/* Modal background */
.modal-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal box */
.modal-popup-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: popupSlideDown 0.3s ease-out;
}

/* Close button */
.modal-popup-close {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Inputs and select fields */
.modal-popup-content input,
.modal-popup-content select {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

/* Submit button - renamed */
.popup-submit-btn {
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.popup-submit-btn:hover {
  background-color: #1da851;
}

/* Animation */
@keyframes popupSlideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
  .modal-popup-content {
    margin-top: 30%;
  }
}
