#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: max-content;
    max-width: 90vw;
    pointer-events: none;
}

.toast {
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    text-align: center;
    min-width: 220px;
    animation: toast-slide-up 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes toast-slide-up {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.toast-success {
    background: #27ae60 !important;
}

.toast-error {
    background: #e74c3c !important;
}

.toast-warning {
    background: #f39c12 !important;
}

.toast-info {
    background: #2d5016 !important;
}