.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 30px;
  overflow-y: scroll;
}
.button-wrapper {
  display:flex; 
}

.button-wrapper.centered {
  justify-content:center;
}

.popup-container {
  max-width: 700px;
  margin: auto;
  width: 100%;
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  
}
.popup-close {
  background-color: black;
    border: none;
    border-radius: 100px;
    color: #fff !important;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (max-width: 768px) {
    .popup-container {
      padding: 20px;
      padding-top:30px;
    }
  .modal-overlay {
    padding: 15px;
  }
  .popup-close {
    top: 10px;
    right: 10px;
  }