/**
 * ========================================================================
 * ARCHIVO: admin-bar.css
 * PROYECTO: MOTELWEB.VIP
 * VERSIÓN: 1.0.0
 * FECHA DE PRODUCCIÓN: 2026-09-15
 * DESCRIPCIÓN: Estilos de la barra de administración (admin_bar.php).
 *              La regla "body { padding-top: 45px }" NO va aquí porque solo
 *              debe aplicar cuando hay admin logueado. Se queda en el <style>
 *              condicional dentro de admin_bar.php.
 * ========================================================================
 */

.btn-nexus-pulse {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 4px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    animation: nexusPulse 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-nexus-pulse:hover {
    background: #D4AF37;
    color: #000;
}

@keyframes nexusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}