/* ═══════════════════════════════════════════════════════════════════════════════
   9. NOTIFICACIONES (Toast)
   Mensajes emergentes de éxito, error y advertencia
   ═══════════════════════════════════════════════════════════════════════════════ */

.notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
}

.notification {
    background: #202c33;
    color: #e9edef;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #00a884;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.notification.error {
    border-left-color: #ff4444;
}

.notification.warning {
    border-left-color: #ffaa00;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

