#map {
  height: 100vh;
  width: 100%;
}
.popup-img {
  max-width: 220px;
  display: block;
  margin-top: 6px;
  border-radius: 6px;
}


/* === UI controls === */
#controls {
  position: absolute;
  top: 15px;
  right: 15px; /* ✅ Move to top-right corner */
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  font-family: sans-serif;
}
#controls select, #controls button {
  margin-top: 5px;
  width: 100%;
  padding: 6px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
#controls button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
#controls button:hover {
  background-color: #0056b3;
}