.geo-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  max-height:100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.geo-popup-overlay.is-active {
  display: flex;
}

.geo-popup-container {
  position: relative;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  width: min(600px, 90%);
  max-height: 85vh;
  overflow-y: auto;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.geo-popup-overlay.is-active .geo-popup-container {
  opacity: 1;
  transform: scale(1);
}

.geo-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.geo-popup-close:hover {
  color: #333;
}

.geo-popup-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding-right: 30px;
}
