.panel-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  background: #fffacd;
  font-family: Georgia, serif;
  max-width: 800px;
  margin: 1em auto;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.panel-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #ddd;
}

.panel-row.header {
  background: #A9a9a9;
  font-weight: bold;
  color: #3a2f1f;
}

.panel-cell {
  flex: 1;
  padding: 0.75em;
  border-right: 1px solid #ddd;
  display: flex;
  align-items: center;
}

.panel-cell:last-child {
  border-right: none;
}

.panel-link {
  display: inline-block;
  padding: 0.4em 0.8em;
  background-color: #dcdcdc;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-family: Verdana, sans-serif;
}

.panel-link:hover {
  background-color: #c0c0c0;
}

@media screen and (max-width: 600px) {
  .panel-row {
    flex-direction: column;
  }
  .panel-cell {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .panel-cell:last-child {
    border-bottom: none;
  }
}
table.death-certificates {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Georgia', serif;
  background-color: #fdfaf6; /* archival parchment tone */
  color: #3b2f2f; /* warm sepia */
}

table.death-certificates caption {
  font-size: 1.2em;
  font-weight: bold;
  padding: 8px;
  text-align: left;
  color: #5a3e36;
}

table.death-certificates th {
  background-color: #e6d9c4;
  color: #2e1f1f;
  text-align: left;
  padding: 8px;
}

table.death-certificates td {
  padding: 6px;
}

table.death-certificates tr.even td {
  background-color: #f7f2ec !important;
}

table.death-certificates tr.odd td {
  background-color: #fffdf9 !important;
}

table.death-certificates a {
  color: #6b4f3f;
  text-decoration: underline;
}


