#toast-container {
    position: fixed;
    top: 5rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 9999;
}

.toast {
    min-width: 200px;
    max-width: 300px;
    padding: 12px 16px;
    font-family: sans-serif;
    font-size: 14px;
    animation: slideIn 0.4s ease, fadeOut 0.4s ease 3.6s forwards;
}

.toast-warning {
    background-color: #f59e0b;
    color: #755010;
}

.toast-success {
    background-color: #2fec09;
    color: #103609;
}

.toast-danger {
    background-color: #ee7777;
    color: #bd0000;
}

.toast-info {
    background-color: #07f8f8;
    color: #002044;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(120%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}