html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#container {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}

#sidebar {
  width: 300px;
  max-width: 30%;
  background: #f9f9f9;
  border-right: 1px solid #ccc;
  padding: 10px;
  overflow-y: auto;
  font-family: Arial, sans-serif;
  display: none;
}

#sidebar h2 {
  margin-top: 0;
}

#map {
  flex-grow: 1;
}

#zoomButton {
  position: absolute;
  bottom: 25px;
  right: 160px;
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease-in-out;
}

#zoomButton:hover {
  background: #0056b3;
}

.marker-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #333;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 11px;
  font-family: Arial, sans-serif;
  color: #000;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

#sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#sidebar li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}
