.leaderboard-header {
  h1 {
    margin-bottom: 0;
    font-size: clamp(18px, 3vw, 1.4rem);
  }

  h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #7033e8ff;
    font-size: clamp(18px, 3vw, 1.4rem);
  }
}

.leaderboard-page {
  padding: 0 20px;
}
.leaderboard-tabs {
  margin-top: 0.5rem;
}

.leaderboard-table-wrap {
  background-color: #fff;
  border-radius: 12px;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;

  thead {
    border-bottom: 1px solid #d6d6d6;
  }

  th {
    padding: 14px 16px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #747474;
    text-align: left;
    letter-spacing: 1px;
  }

  tbody {
    tr {
      border-bottom: 1px solid #d6d6d6;

      &:last-child {
        border-bottom: none;
      }
    }

    td {
      padding: 14px 16px;
      font-size: 14px;
      color: #222;

      i {
        color: #7033e8ff;
      }
    }
  }
}

.lead-tab {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.tab {
  /* styles de base */
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  padding: 6px 16px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  color: #747474;
}

.tab.active {
  background: #7033E8;
  color: #fff;
  border-color: #7033E8;
}

.team-athletes {
  font-size: 12px;
  color: #747474;
}

.score-col {
  font-weight: 700;
}

.leaderboard-wod-tabs {
  margin-bottom: 1.5rem;
}

@media (max-width: 599px) {
  .leaderboard-table th:nth-child(3),
  .leaderboard-table td:nth-child(3),
  .leaderboard-table th:nth-child(4),
  .leaderboard-table td:nth-child(4) {
    display: none;
  }

  .team-athletes {
    font-size: 11px;
  }
}
