@font-face {
  font-family: 'PixelPurl';
  src: url('PixelPurl.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'PixelPurl', sans-serif;
  background-color: #605854;
  font-size: 26px;
  color: #fff;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}

.rating-container {
  height: 100vh; /* фиксированная высота */
  width: 100vw;
  overflow-y: scroll; /* важен scroll, а не auto */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE и Edge */
  /* border: 1px solid #ccc; */
  border: 0px;
  background: #605854;
}
.rating-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  position: sticky;
  top: 0;
  background-color: #504444;
  z-index: 1;
  padding: 0.75rem;
}

th, td {
  padding: 0.75rem;
  border-bottom: 1px solid #fff;
  text-align: left;
}
td:nth-child(1),
th:nth-child(1) {
  text-align: left;
}

td:nth-child(2),
th:nth-child(2) {
  text-align: center;
}

td:nth-child(3),
th:nth-child(3) {
  text-align: right;
}
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}

.highlight-player {
  background-color: #2596be;
  font-weight: bold;
}