#toast_container {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse; /* <- hace que el último esté arriba */
    gap: 10px;
    z-index: 9999;
}

.toast {
    /*top: 30px;
    right: 30px;*/
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}

.toast.t-show {
    opacity: 1;
    transform: translateY(0);
}

.toast.t-hidden {
    display: none;
}

.toast-green {
    background-color: green;
    color: white;
}

.toast-red {
    background-color: red;
    color: white;
}

.toast-blue {
    background-color: blue;
    color: white;
}

.toast-orange {
    background-color: orange;
    color: white;
}

.toast-purple {
    background-color: purple;
    color: white;
}

.toast-yellow {
    background-color: yellow;
    color: black;
}