.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: calc(100% - 40px);
}

.toast {
    position: relative;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    color: white;
    animation: toastSlideIn .4s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}

    .toast.removing {
        animation: toastSlideOut .3s cubic-bezier(.4,0,.2,1);
    }

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(.9);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes toastSlideOut {
    to {
        opacity: 0;
        transform: translateX(100%) scale(.9);
    }
}

/* rest of your toast css stays identical */
