/* qcvn2 — geographic lookup tables */

/* --- Table --- */
table {
  width: auto;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 1em;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  table-layout: fixed;
}

caption {
  caption-side: top;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

th, td {
  padding: 10px;
  border: 1px solid var(--color-border-table);
  text-align: center;
}

th:first-child, td:first-child {
  text-align: left;
  width: auto;
}

th:nth-child(n+2), td:nth-child(n+2) {
  width: 90px;
}

th {
  background-color: var(--color-bg-table-header);
  font-weight: bold;
}
