/* Table styling */
.fifa-rankings {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: Arial, sans-serif;
}

/* Headers */
.fifa-rankings th {
    background-color: #222;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Cells */
.fifa-rankings td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 13px;
}

/* Alternating rows */
.fifa-rankings tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
.fifa-rankings tr:hover {
    background-color: #e2e2e2;
}

/* Current logged-in user highlight */
.fifa-rankings .current-user {
    background-color: #fff3cd !important;
    font-weight: bold;
}

/* Highlight top 2 users */
.fifa-rankings tbody tr:nth-child(1) td {
    background-color: #ffd700; /* Gold for 1st place */
    color: #000;
    font-weight: bold;
}
.fifa-rankings tbody tr:nth-child(2) td {
    background-color: #c0c0c0; /* Silver for 2nd place */
    font-weight: bold;
}

/* Optional: you can remove any styles for 3rd place */
