/* Container do toast no canto superior direito */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Estilo do toast */
.toast {
    min-width: 250px;
    background-color: #333;
    color: white;
    padding: 14px 20px;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

/* Toast visível */
.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Cores para sucesso e erro */
.toast.success {
    background-color: #28a745;
}

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