/* ===============================
   TÍTULOS DE RANKINGS (GLOBAL)
   =============================== */
.mfs-ranking-title {
    margin-bottom: 16px;
    font-size: 18px;
}


/* ===============================
   RANKING: ALL PLAYERS
   =============================== */

.mfs-all-players-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Card */
.mfs-all-players-grid .mfs-player-card {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
}

/* Avatar */
.mfs-all-players-grid .mfs-player-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 6px;
}

/* Nombre */
.mfs-all-players-grid .mfs-player-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mfs-all-players-grid .mfs-player-name a {
    text-decoration: none;
    color: #000;
}

/* Columnas */
.mfs-all-players-grid .mfs-player-columns {
    display: flex;
    gap: 10px;
}

.mfs-all-players-grid .mfs-col {
    width: 50%;
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
}

/* Barras */
.mfs-all-players-grid .bar {
    height: 6px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.mfs-all-players-grid .bar.green {
    background-color: #4caf50;
}

.mfs-all-players-grid .bar.orange {
    background-color: #ff9800;
}

.mfs-all-players-grid .bar.red {
    background-color: #f44336;
}
