


#mapSearchInput {
  padding: 10px 15px;
  width: 260px;
  border-radius: 8px;
}

/* Base search box */
#mapSearchBox {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  max-width: calc(100% - 40px); /* space from edges */
  background: white;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Mobile layout */
@media (max-width: 768px) {

  #mapSearchBox {
    top: 90px; /* push below zoom controls */
    width: calc(100% - 30px);
    border-radius: 14px;
    padding: 10px;
  }

}

/* Push Leaflet zoom down */
.leaflet-top.leaflet-left {
  margin-top: 60px;
}