table {
  margin: 20px 0;
  width: 100%;
  border-collapse: collapse;
}

thead th {
  color: white;
  background-color: var(--bg-dark-red);
  font-weight: bold;
  text-decoration: none;
  text-align: left;
  padding: 10px;
  border: 1px solid var(--border-gray);
}

thead th a {
  color: white;
  text-decoration: none;
}

thead th a:hover, thead th a:visited {
  color:white;
}

thead th a:hover, thead th a:focus {
  text-decoration: underline;
}

tr:nth-child(odd) {
  background-color: var(--bg-gray);
}

tr:nth-child(even) {
  background-color: white;
}

td {
  padding: 10px;
  border: 1px solid var(--border-gray);
}
