.map-container {
  background-color: white;
}

.map-container::after {
  display: block;
  clear: both;
}

.controls {
  position: absolute;
  top: 1em;
  right: 1em;
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.controls button {
  border: 0;
  padding: 0;
  background: #E7F4FA;
  color: #00557c;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 9px;
}

#filter-control {
  position: absolute;
  top: 1em;
  left: 1em;
  --bs-body-bg: #E7F4FA;
  --bs-body-color: #00557c;
  --bs-border-width: 0;
  --bs-border-radius: 9px;
  display: flex;
  gap: 12px;
}

#map-debug-tool {
  position: absolute;
  bottom: 1em;
  left: 1em;
  background: #E7F4FA;
  padding: 12px;
  opacity: 0.8;
  width: 250px;
  font-size: 12px;
}

#map-debug-tool .form-control {
  font-size: 12px;
}

@media print {
  .controls,
  filter-control,
  map-debug-tool {
    display: none;
  }
}