@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

#sv-ranking-wrapper {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    max-width: 1000px;
    margin: 0 auto;
    color: #1e293b;
}
#sv-ranking-wrapper * {
    box-sizing: border-box;
}

/* --- NAVEGADOR DE CATEGORÍAS --- */
.sv-category-navigator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.sv-nav-arrow {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    transition: all 0.2s ease;
}

.sv-nav-arrow:hover:not(:disabled) {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.05);
}

.sv-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sv-current-cat-display {
    text-align: center;
    min-width: 200px;
}

.sv-cat-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.sv-cat-rama {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3b82f6; /* Este color se actualizará dinámicamente con JS */
}

/* --- TABLA DE RANKING --- */
.sv-ranking-table-container {
    background: #ffffff;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
}
.sv-ranking-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}
.sv-ranking-table th, .sv-ranking-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #f1f5f9;
}
.sv-ranking-table th {
    background: #f8fafc;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
    text-align: center;
}
.sv-ranking-table th:nth-child(2) { text-align: left; }

.sv-ranking-table tr:last-child td { border-bottom: none; }

.sv-td-pos {
    width: 40px;
    text-align: center;
    font-weight: 800;
    color: #94a3b8;
    font-size: 14px;
}
.sv-pos-1 { color: #eab308; } 
.sv-pos-2 { color: #94a3b8; } 
.sv-pos-3 { color: #b45309; } 

.sv-td-equipo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
}
.sv-td-equipo img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    background: #f1f5f9;
}

.sv-td-stat {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}
.sv-td-pts {
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    background: #f1f5f9;
}

.sv-empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
}

.sv-th-tooltip {
    cursor: help;
    border-bottom: 1px dotted #94a3b8;
}

/* Spinner animado */
.accvs-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #3498db;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
