/* Estilos para o popup de notificação */
.notification-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  color: #fff;
  font-family: sans-serif;
  z-index: 10000; /* Garante que fique acima de outros elementos */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s, transform 0.5s;
  transform: translateY(-20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notification-popup.success {
  background-color: #4CAF50; /* Verde */
}

.notification-popup.error {
  background-color: #f44336; /* Vermelho */
}

.notification-popup.info {
  background-color: #2196F3; /* Azul */
}

