#toastContainer {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast {
    color: white;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 4px;
    opacity: 1;
    transition: opacity 1s ease;
    font-family: sans-serif;
    min-width: 240px;
    text-align: center;
}

/* Variações */
.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

.toast-warning {
    background-color: #ffc107;
    color: black;
}

.toast-info {
    background-color: #17a2b8;
}

/* Animação de saída */
.toast.fade-out {
    opacity: 0;
}
