.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}
.popup-content {
  background-color: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  z-index: 100;
  text-align: center;
  animation: popupFadeIn 0.3s ease-in-out;
}
.popup-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}
.popup-message {
  margin-bottom: 16px;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.5;
}
.popup-button {
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  border: 1px solid #EC1C80;
  border-radius: 12px;
  padding: 5px 15px;
  text-align: center;
  margin-right: 10px;
  margin-top: 15px;
  background-color: #EC1C80;
  transition: background-color 0.2s ease-in;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
}
.popup-button:hover {
  background-color: #2563eb;
}
.popup-button.copy-button{
  margin-top: 0px;
  font-size: 12px;
  max-width: 150px;
}
.button-separator {
  margin: 12px 0;
  color: #8E8E93;
}
.appUrl {
  text-align: center;
}
.appUrl a {
  text-decoration: none;
  color: #EC1B80;
}
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}