.leaderboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    gap: 2rem;
    color: #fff;
}

.leaderboard-container h2 {
    font-size: 1.8rem;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

/* SELECT */
.country-select select {
    padding: 0.6rem 1rem;
    background: #1b1b1b;
    color: #fff;
    border: 2px solid #ffcc00;
    border-radius: 6px;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
}

.country-select select:hover {
    transform: scale(1.05);
}

/* TABULKA */
.leaderboard-table {
    width: 90%;
    max-width: 650px;
    border-collapse: collapse;
    background: #1b1b1b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
}

.leaderboard-table th {
    background: #ffcc00;
    color: #111;
    padding: 0.8rem;
    font-weight: bold;
}

.leaderboard-table td {
    padding: 0.7rem;
    border-top: 1px solid #333;
}

/* TOP 3 zvýraznění */
.leaderboard-table tr.top {
    background: #262626;
    color: #ffcc00;
    font-weight: bold;
}

.leaderboard-table tr:hover {
    background: #222;
    cursor: pointer;
}

/* AVATAR */
.player-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.4rem;
    vertical-align: middle;
    border: 2px solid #ffcc00;
}

/* ANIMACE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
