#search-box {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 90%;
  max-width: 400px;
  padding: 12px 16px;
  font-size: 16px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.map-bottom-controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 999;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.map-control {
  background: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
}
.reset-button {
  background: #f44336;
  color: #fff;
  cursor: pointer;
  border: none;
}
@media (max-width: 480px) {
  #search-box {
    top: 70px;
    width: 94%;
    font-size: 15px;
    padding: 10px 14px;
  }
  .map-bottom-controls {
    flex-direction: column;
    left: 10px;
    right: 10px;
    width: auto;
  }
  .map-control, .reset-button {
    width: 100%;
    text-align: center;
  }
}