#location-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.popup-box h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  margin-bottom: 20px;
}

.popup-box input,
.popup-box select,
.popup-box button {
  display: block;
  width: 80%;
  padding: 10px;
  margin: 0 auto 10px auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.popup-box button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.popup-box button:hover {
  background-color: #0056b3;
}

.popup-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
