/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Popup Box */
.popup-box {
  background: #ffffff;
  padding: 24px;
  width: 650px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.popup-box button {
  margin-top: 16px;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #2563eb;
  color: white;
}

#closePopup{
background-color: transparent;
color: rgb(194, 194, 194);
font-size: 11px;
border-radius: 100px;
border: 1px solid rgb(192, 192, 192);
padding: 0 15px;
margin-top: 0 !important;
}

@media screen and (max-width: 550px){
    .popup-box {
        width:350px;
    }
}
