@import url("/stylesheet.css");

table {
  margin: auto;
  border-collapse: collapse;
  border: 1px solid darkgreen;
}

thead {
  background-color: darkgreen;
  color: mintcream;
}

th:nth-child(n + 2) {
  width: 12em;
}

tbody > tr:nth-child(even) {
  background-color: cornsilk;
}

td {
  border: 1px solid saddlebrown;
}

td:nth-child(1) {
  white-space: nowrap;
  width: fit-content;
}

td:nth-child(n + 2) {
  text-align: center;
}
