.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-overlay.show {
  display: flex !important;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.popup-box h2 {
  margin-bottom: 20px;
}

.option-button {
  display: block;
  margin: 10px 0;
  padding: 12px 20px;
  background: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.option-button:hover {
  background-color: #e0e0e0;
}

.koalify-btn {
  padding: 14px 25px;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 8px;
  margin: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.koalify-btn:hover {
  background-color: #005bb5 !important;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
