.toast-container {
    z-index: 9999;
}

.toast {
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: #d4edda !important;
    color: #155724;
}

.toast.error {
    background-color: #f8d7da !important;
    color: #721c24;
}

.toast.warning {
    background-color: #fff3cd !important;
    color: #856404;
}

.toast.info {
    background-color: #cce5ff !important;
    color: #004085;
}

.toast-icon {
    width: 20px;
    height: 20px;
}

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

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}


.toast.animate-in {
    animation: slideIn 0.3s ease-out forwards;
}

.toast.animate-out {
    animation: slideOut 0.3s ease-in forwards;
}