/* ================= TOAST NOTIFICATIONS ================= */
.toast-container {
    position: fixed;
    top: 24px;
    right: 80px;
    z-index: 9999;
}

.toast {
    padding: 12px 20px;
    background: #28a745;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}

.toast.error {
    background: #dc3545;
}

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




