
/* Sobrescreve estilos do toastr com cantos arredondados e cores pastel suaves */
#toast-container > div {
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    color: #333 !important;
    border: 1px solid #e2e2e2 !important;
}

.toast-success {
    background-color: #d0f0c0 !important; /* verde pastel */
    color: #2d5c2f !important;
}

.toast-error {
    background-color: #f8d0d0 !important; /* vermelho pastel */
    color: #6e1a1a !important;
}

.toast-info {
    background-color: #cce5ff !important; /* azul pastel */
    color: #1b4f72 !important;
}

.toast-warning {
    background-color: #fff3cd !important; /* amarelo pastel */
    color: #856404 !important;
}

.toast {
    background-color: #fdfdfd !important;
}

.toast-close-button {
    color: #555 !important;
    opacity: 0.6 !important;
}

.toast-close-button:hover {
    color: #000 !important;
    opacity: 1 !important;
}
