/* Shared data table used across regional information pages. */
.data-table {
  font-family: Arial, sans-serif;
  border-collapse: collapse;
  width: min(100%, 800px);
}

.data-table td,
.data-table th {
  border: 1px solid var(--color-table-border);
  text-align: left;
  padding: 8px;
}

.data-table tr:nth-child(even) {
  background-color: var(--color-table-alt-row);
}

.data-table thead tr {
  background-color: var(--color-table-header);
}

.data-table thead th {
  color: var(--color-text-light);
}

.data-table--spaced {
  margin-top: 2rem;
}

#results-table td,
#results-table th,
#inputs-table td,
#inputs-table th,
#correlations-table td,
#correlations-table th,
#statistics-table td,
#statistics-table th {
  text-align: center;
}

#results-table {
  margin: 0 auto;
  max-width: 90%;
}

#statistics-table {
  margin: 0 auto;
  max-width: 100%;
}

#correlations-table {
  margin: 0 auto;
  max-width: 80%;
}
