/* ============================================
   TOAST - Notificaciones
   ============================================ */

.toast {
    background: var(--accent);
    color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.toast.success {
    background: var(--success);
    color: white;
}

.toast.warning {
    background: var(--warning);
    color: white;
}

.toast.error {
    background: var(--danger);
    color: white;
}
