/* Notificaciones */
.eq-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    background: #333;
    color: white;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.eq-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.eq-notification.success {
    background-color: #4CAF50;
}

.eq-notification.error {
    background-color: #F44336;
}

.eq-notification.warning {
    background-color: #FF9800;
}

.eq-notification.info {
    background-color: #2196F3;
}