.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    z-index: 99999;
}

.toast {
    min-width: 200px;
    padding: 15px;
    background-color: #333; /* cor padrão */
    color: #fff;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.3s, opacity 0.3s;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(100%);
}

/* Estilos para tipos específicos */
.toast-success {
    background-color: #28a745; /* verde */
}

.toast-error {
    background-color: #dc3545; /* vermelho */
}

.toast-info {
    background-color: #17a2b8; /* azul */
}
