LeaderboardUI {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #003724;
    padding: 20px;
    color: #fff;
    text-align: center;
    flex-direction: column;
}

.info {
    font-size: 30px;
    margin-bottom: 15px;
    font-family: Poppins, sans-serif;
}

.title {
    font-size: 100px;
    margin-bottom: 100px;
    text-transform: uppercase;
    justify-content: center;
}

.leaderboard {
    width: 100%;
    max-height: 100px;
    padding: 10px;
    flex-direction: column;
    border-top:2px, white;
}

.leaderboard-header {
    margin-bottom: 125px;
}

.leaderboard-entry {
    margin-bottom: 80px;
}

.rank-column {
    width: 20%; /* Largeur fixe pour la colonne Rank */
    text-align: center;
    font-size: 60px;
}

.player-column {
    width: 40%; /* Plus large pour les noms */
    text-align: center;
    font-size: 60px;
}

.time-column {
    width: 40%; /* Largeur pour le temps */
    text-align: center;
    font-size: 60px;
}
