/* ===== Toast Notification Styles ===== */

.toast {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 2147483647 !important;
    max-width: 400px !important;
    padding: 12px 16px !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-family: system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    animation: toastSlideIn 0.3s ease-out !important;
}

.toast.toast-success {
    background: #22c55e !important;
}

.toast.toast-error {
    background: #ef4444 !important;
}

.toast.toast-info {
    background: #3b82f6 !important;
}

.toast.toast-warning {
    background: #f59e0b !important;
}

.toast button,
.toast .text-current {
    color: #fff !important;
}

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