/* /avisos/assets/caja_stats.css v1 - CAJA ESTADÍSTICAS MÓDULO AVISOS */

/* ===== CONTENEDOR PRINCIPAL ===== */
.caja-stats { 
    padding: 6px 6px !important;
    margin-bottom: 10px !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
}

/* ===== TÍTULO ===== */
.titulo-stats { 
    font-size: 16px !important;
    margin: 0 !important;
    text-align: left !important;
    flex-shrink: 0 !important;
    color: #333;
    font-weight: 600;
}

/* ===== CONTENEDOR NÚMEROS ===== */
.numeros-stats { 
    display: flex !important; 
    gap: 20px !important;
    justify-content: flex-end !important;
    margin-top: 0 !important;
}

/* ===== ITEM INDIVIDUAL ===== */
.stat-item {
    text-align: center !important;
    min-width: auto !important;
    line-height: 1 !important;
}

/* ===== NÚMERO ===== */
.stat-item .numero {
    font-size: 18px !important;
    line-height: 1 !important;
    margin-bottom: 0px !important;
    display: block !important;
    color: #007bff !important;
    font-weight: 700;
}

/* ===== ETIQUETA ===== */
.stat-item .etiqueta {
    font-size: 11px !important;
    line-height: 1 !important;
    margin-top: 0 !important;
    color: #666;
    font-weight: 500;
    text-transform: capitalize;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .caja-stats {
        padding: 4px 4px !important;
    }
    
    .titulo-stats {
        font-size: 14px !important;
    }
    
    .numeros-stats {
        gap: 15px !important;
    }
    
    .stat-item .numero {
        font-size: 16px !important;
    }
    
    .stat-item .etiqueta {
        font-size: 10px !important;
    }
}

/* ===== VARIANTES DE TEMA ===== */
.caja-stats.tema-mis-avisos {
    background: #e3f2fd;
    border-color: #2196f3;
}

.caja-stats.tema-papelera {
    background: #fff3e0;
    border-color: #ff9800;
}

.caja-stats.tema-nuevo {
    background: #e8f5e8;
    border-color: #4caf50;
}