#toastContainer{

    position: fixed;

    top: 120px;

    right:20px;

    z-index: 999999;

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.toast{

    min-width: 320px;

    max-width: 500px;

    padding: 15px 20px;

    border-radius: 8px;

    color: #fff;

    font-weight: 500;

    opacity: 0;

    transform: scale(.9);

    transition: all .3s ease;

}

.toast.show{

    opacity: 1;

    transform: scale(1);

}

.toast-success{

    background:#16a34a;

}

.toast-error{

    background:#dc2626;

}

.toast-warning{

    background:#f59e0b;

}

.toast-info{

    background:#2563eb;

}