html,
body,
#map {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
}

body,
button,
input,
textarea,
label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.filter-button {
  position: absolute;
  top: 50px;
  right: 10px;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: semi-bold;
  z-index: 2;
  cursor: pointer;
}

.add-point-button {
  position: absolute;
  top: 50px;
  left: 10px;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: semi-bold;
  z-index: 2;
  cursor: pointer;
}


.filter-button-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(99%) saturate(1974%) hue-rotate(188deg);
  vertical-align: middle;
  transform: translateY(-1px);
  padding-right: 5px;
}

.filter-panel {
  position: absolute;
  top: 100px;
  right: 10px;
  background: white;
  padding: 10px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: semi-bold;
  z-index: 2;
  display: none;
}

.filter-panel label {
  display: block;
  padding: 5px;
}

.filter-item {
  display: flex;
  align-items: center;
  font-family: sans-serif;
  line-height: 1.2;
}


.filter-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  transform: translateY(-2px);
}