html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100vh;
}

.popup-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.popup-content h4 {
  margin: 0 0 5px;
}

#search-bar {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: white;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#search-bar input {
  box-sizing: border-box;
  font-size: 14px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 200px;
  vertical-align: middle;
}

#search-bar button {
  box-sizing: border-box;
  font-size: 14px;
  padding: 4px 10px;
  margin-left: 6px;
  background-color: #2a7ade;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#search-bar button:hover {
  background-color: #1e5fbf;
}
