
/* Aumentar opacidade e largura */
.toast {
    opacity: 1 !important;       /* quase opaco */
    width: 40% !important;    /* largura mínima */
    font-size: 16px;                /* opcional: aumentar texto */
    border-radius: 8px;             /* opcional: cantos arredondados */
}

/* Centralizar texto (opcional) */
.toast-message {
    text-align: center;
}

@media (max-width: 900px) {
    .toast {
        width: 80% !important;    /* largura mínima */
    }
}

