.custom-shadowMessage {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  padding: 12px 24px;
  max-width: 90%;
  margin: 20px auto;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 12px;
  text-align: center;
  position: relative;
  z-index: 1002;
}

.alert-success {
  background: linear-gradient(135deg, #4caf50, #43a047);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.alert-danger {
  background: linear-gradient(135deg, #f44336, #e53935);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.animate-notify {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}

.hide-notify {
  opacity: 0;
  transform: translateY(-20px);
}
