/* public/components/toast-notification/toast.css */

#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; transform: scale(0.9); } }
.toast {
    padding: 12px 18px;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out, fadeOut 0.5s ease-in 3.5s forwards;
    min-width: 250px;
    max-width: 350px;
    font-size: 0.9em;
    font-weight: 500;
}
.toast-success { background: linear-gradient(135deg, #4CAF50, #5cb85c); }
.toast-error { background: linear-gradient(135deg, #F44336, #d9534f); }
.toast-info { background: linear-gradient(135deg, #4facfe, #00f2fe); }

@media (max-width: 767px) {
    #toastContainer {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}