.container {
  width: 100%;
  height: 1016px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: url('/schedule-cards-desktop.jpg') no-repeat center center;
  background-size: cover;
}

.title_leaderBoard {
  text-align: center;
  width: 80%;
  max-width: 1240px;
  height: 72px;
  z-index: 1;
  opacity: 1;
  font-size: 48px;
  font-weight: 600;
  line-height: 72px;
  margin-top: 80px;
}

.container_selector {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  max-width: 647px;
  max-height: 104px;
  height: 100%;
  margin-top: 40px;
}

.leaderboard_table {
  max-width: 700px;
  width: 90%;
  max-height: 600px;
  height: 100%;
  margin-top: 40px;
  position: relative;
}

.round_container {
  display: flex;
  justify-content: space-evenly;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.round_button {
  cursor: pointer;
  min-width: 95px;
  max-width: 170px;
  width: auto;
  height: 40px;
  text-align: center;
  gap: 8px;
  border-radius: 4px;
  background-color: #28282d;
  padding: 8px 16px 8px 16px;
  margin: 0 4px 0 4px;
  font-size: 16px;
  border: 0;
  color: white;
}

.round_button.active {
  border: 1px solid #c8a0f0;
  color: #c8a0f0;
}

.round_button.disabled {
  pointer-events: none;
  opacity: 0.5;
  background-color: #3200ff;
}

.highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #f1c144;
}

.pagination {
  display: flex;
  height: 64px;
  background: transparent;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 104%;
  transform: translate(-50%, -50%);
}

.dropdown_selectors {
  display: flex;
  max-width: 500px;
  width: 100%;
  gap: 8px;
  padding: 0 16px 0 16px;
}

.dropdown_selector {
  flex: 1;
  max-width: 240px;
  height: 40px;
  background: #28282d;
  border-radius: 4px;
}

select {
  width: 100%;
  height: 40px;
  background: #28282d;
  border-radius: 4px;
  color: #ffffff;
  border: 0;
  padding: 8px 24px 8px 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table-container {
  margin: 0 auto;
  background-color: #28282d;
  border-radius: 8px;
  overflow: hidden;
  font-size: 16px;
}

.custom-select {
  position: relative;
  cursor: pointer;
}

.select-selected {
  display: flex;
  justify-content: space-between;
  background-color: #28282d;
  color: white;
  padding: 10px;
  border-radius: 4px;
}

.select-items {
  position: absolute;
  background-color: #000000b2;
  border-radius: 4px;
  z-index: 99;
  width: 100%;
}

.select-item {
  padding: 10px;
  color: white;
  cursor: pointer;
}

.select-item:hover {
  background-color: #444;
}

table {
  max-width: 700px;
  max-height: 600px;
  width: 100%;
  border-collapse: collapse;
  position: relative;
}

thead {
  height: 56px;
}

th {
  background: #9b5ff540;
  color: #919196;
  height: 56px;
}

tr {
  height: 48px;
}

td {
  text-align: center;
  height: 48px;
}

th:first-child,
td:first-child {
  max-width: 100px;
  text-align: center;
}

th:not(:first-child),
td:not(:first-child) {
  max-width: 200px;
}

tr:nth-child(odd) {
  background-color: #0f0f0f;
}

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

td:last-child {
  text-align: center;
}

@media (max-width: 700px) {
  .container {
    height: 950px;
  }
  .round_button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 95px;
    max-width: 170px;
    width: auto;
    height: 40px;
    text-align: center;
    gap: 8px;
    border-radius: 4px;
    background-color: #28282d;
    padding: 8px;
    margin: 0 4px;
    font-size: 16px;
    border: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .title_leaderBoard {
    margin-top: 40px;
    font-size: 38px;
  }
  .leaderboard_table {
    margin-top: 25px;
  }
}

@media (max-width: 539px) {
  .container {
    height: 830px;
  }
}

@media (max-width: 380px) {
  .title_leaderBoard {
    font-size: 28px;
  }
  select {
    font-size: 14px;
  }
  .leaderboard_table {
    margin-top: 16px;
  }
}
