h1,
h2 {
  text-align: center;
  margin: 0;
  padding-block-start: 1rem;
}

table {
  width: 100%;
}

tbody tr:nth-child(odd) {
  background: var(--btn-color);
}

th {
  width: 23.75%;
}

th:first-of-type {
  width: 5%;
}

td {
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.player-name {
  text-overflow: ellipsis;
  overflow-x: clip;
  max-width: 15rem;
}

.player-name:empty::before {
  content: "Mystery Nerd";
  font-style: italic;
  font-size: 85%;
  color: aqua;
}

#scoreboard {
  margin-top: 1rem;
}

#scoreboard:has(tbody[data-active="false"]) {
  display: none;
}

@media (max-width: 1026px) {
  #scoreboard {
    font-size: 90%;
  }
}

#scoreboard thead {
  position: sticky;
  top: 0;
  background: var(--bg-color);
}

#scoreboard thead th {
  padding: 0.5rem 0;
}

#scoreboard-disclaimer {
  text-align: center;
  text-wrap: balance;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
