/* ============================================
   KAIRCAM - ESTILOS COMPLEMENTARIOS A TAILWIND
   ============================================ */

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #2d2f36;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff3e3e;
}

/* Efectos de glow */
.glow-red {
    box-shadow: 0 0 15px rgba(255, 62, 62, 0.2);
}

.border-red-glow {
    border: 1px solid rgba(255, 62, 62, 0.3);
}

/* Indicador EN VIVO con animación */
.live-indicator::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff3e3e;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { 
        transform: scale(0.95); 
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.7); 
    }
    70% { 
        transform: scale(1); 
        box-shadow: 0 0 0 6px rgba(255, 62, 62, 0); 
    }
    100% { 
        transform: scale(0.95); 
        box-shadow: 0 0 0 0 rgba(255, 62, 62, 0); 
    }
}

/* Animación para notificaciones */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideIn {
    animation: slideIn 0.4s ease-out forwards;
}

/* Estilos para el contenido principal */
.main-content {
    min-height: calc(100vh - 70px);
}

/* Ajustes responsive para móviles */
@media (max-width: 768px) {
    /* Ocultar texto en navegación móvil */
    .lg\:flex span:not(.material-icons) {
        display: none;
    }
}