.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay.hidden {
  display: none;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeInUp 0.3s ease;
}
.popup-content.hidden {
  display: none;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  color: #888;
  font-size: 14px;
}

.custom-dropdown-container select,
.form-fields input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
}

.btn {
  background: #188754;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=popup.css.map */