#agmPopup {
  position: fixed !important;
  top: 10% !important;
  left: 50% !important;
  transform: translate(-50%, 0) !important;
  display: none;
  z-index: 999999 !important;
  width: 90%;
  max-width: 600px;
}

#agmPopup>div {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  font-family: 'Segoe UI', sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

