#exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 2px solid #333;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  display: none;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
}


.popup-banner {
  max-width: 100%;
  height: auto;
}

.popup-text {
  font-size: 16px;
  color: #333;
  text-align: center;
}

.popup-text button {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.popup-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
