.lid-title { color: var(--vd-navy); font-size: 26px; margin: 10px 0 16px; }
.lid-filters { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.lid-filters select {
    padding: 10px 14px; border: 1px solid #dde1e8; border-radius: 10px; font-size: 14px; background: #fff;
}
#lid-category { flex: 1; min-width: 220px; }

.lid-panel { background: var(--vd-white); border: 1px solid #dde1e8; border-radius: 14px; padding: 18px; box-shadow: 0 5px 18px rgba(20,23,31,.04); }
.lid-panel-title { margin: 0 0 14px; font-size: 18px; color: var(--vd-navy); }

.lid-list { display: flex; flex-direction: column; gap: 6px; }
.lid-row {
    display: flex; align-items: center; gap: 14px; padding: 10px 12px;
    background: #f7f8fa; border-radius: 10px; text-decoration: none; color: inherit;
}
.lid-row:hover { background: #eef1f6; }
.lid-rank {
    width: 30px; height: 30px; border-radius: 50%; background: #eef1f6; color: #5b6472;
    display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; flex-shrink: 0;
}
.lid-rank-top { background: var(--vd-navy); color: #fff; }
.lid-player { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lid-player-name { font-weight: 700; color: #1a2233; font-size: 14px; }
.lid-player-team { display: flex; align-items: center; gap: 5px; color: #8a93a3; font-size: 11px; margin-top: 2px; }
.lid-player-team img { width: 16px; height: 16px; object-fit: contain; }
.lid-games { color: #b0b6c0; font-size: 11px; flex-shrink: 0; }
.lid-total { font-weight: 900; color: var(--vd-navy); font-size: 20px; min-width: 50px; text-align: right; flex-shrink: 0; }
/* Top 5 por defecto + boton "Ver mas" en lideres.php */
.lid-row-extra {
    display: none;
}
.lid-list-expanded .lid-row-extra {
    display: flex;
}
.lid-show-more {
    margin-top: 14px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}
.lid-show-more:hover {
    background: #f2f2f2;
}

/* Tarjetas grandes estilo Playoff Picture */
.lid-row {
    padding: 14px 16px;
    gap: 16px;
}
.lid-rank {
    width: 40px;
    height: 40px;
    font-size: 16px;
    font-family: 'Novecento Slab Wide', 'Novecento Slab', sans-serif;
}
.lid-card-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.lid-card-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.lid-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vd-navy);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
}
.lid-player-name {
    font-size: 15px;
}
.lid-player-team {
    font-size: 12px;
    margin-top: 3px;
}
.lid-player-team img { display: none; } /* el logo ya se muestra grande en .lid-card-logo, aqui solo el texto */
.lid-stat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    gap: 2px;
}
.lid-stat-block .lid-total {
    font-family: 'Novecento Slab Wide', 'Novecento Slab', sans-serif;
    font-size: 28px;
    min-width: 0;
}
.lid-stat-block .lid-games {
    font-size: 11px;
}

/* Header de liga especifica en lideres.php */
.lid-league-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 16px;
}

/* Pestanas de grupo (Pasadores/Corredores/etc.) */
.lid-group-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e4ee;
    padding-bottom: 10px;
}
.lid-group-tab {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #fff;
    color: var(--vd-navy);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}
.lid-group-tab.active {
    background: var(--vd-navy);
    color: #fff;
    border-color: var(--vd-navy);
}

/* Chips de categoria dentro del grupo activo */
.lid-stat-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.lid-stat-chip {
    padding: 6px 14px;
    border-radius: 16px;
    border: 1px solid #dde1e8;
    background: #f7f8fa;
    color: #4a5468;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.lid-stat-chip:hover {
    background: #eef1f6;
}
.lid-stat-chip.active {
    background: #eaf0ff;
    border-color: var(--vd-navy);
    color: var(--vd-navy);
}
