#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10003;
}

.toast {
    min-width: 260px;
    max-width: 460px;
    margin-top: 0.8rem;
    margin-left: 2rem;
    padding: 0.9rem 1.2rem;
    border-radius: 0.8rem;
    color: #fff;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(1.3rem);
    animation: toast-in .3s ease forwards;
}

.toast.success { background: #00ce3f; }
.toast.error   { background: #ff3d3d; }
.toast.info    { background: #3B82F6; }

@keyframes toast-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    to {
        opacity: 0;
        transform: translateY(1.3rem);
    }
}