/* ==========================================
   SISTEMA DE NOTIFICAÇÕES (TOASTS)
   ========================================== */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* Para não bloquear cliques por baixo do container */
}

.custom-toast {
    min-width: 250px;
    max-width: 350px;
    padding: 1.25rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: auto; /* Permite clicar no botão de fechar */
    opacity: 0;
    transform: translateX(100%);
    animation: slideInToast 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    cursor: pointer;
}

.custom-toast.is-closing {
    animation: fadeOutToast 0.3s ease forwards;
}

@keyframes slideInToast {
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOutToast {
    100% { opacity: 0; transform: translateY(-10px); }
}