/* Leaderboard Styling */
.leaderboard-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
}

.leaderboard-item {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.leaderboard-item:hover {
    transform: translateX(5px); /* Slight shift right on hover */
}

.username {
    font-weight: bold;
    font-size: 1.2em;
    color: #007bff; /* FRC blue */
}

.points {
    font-size: 1.1em;
    color: #28a745; /* Green for points */
    font-weight: bold;
    background-color: rgba(40, 167, 69, 0.1); /* Light green background */
    padding: 2px 8px;
    border-radius: 3px;
}

/* Top 3 Rankings (optional FRC flair) */
.leaderboard-item:nth-child(1) {
    border-left: 5px solid #ffd700; /* Gold for 1st */
}

.leaderboard-item:nth-child(2) {
    border-left: 5px solid #c0c0c0; /* Silver for 2nd */
}

.leaderboard-item:nth-child(3) {
    border-left: 5px solid #cd7f32; /* Bronze for 3rd */
}

/* Responsive */
@media (max-width: 600px) {
    .leaderboard-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    .username, .points {
        font-size: 1em;
    }
}