html,
body,
#app {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

:root {
  --menubar-h: 56px;
}

.map-root {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: var(--menubar-h) 1fr;
  grid-template-columns: 100%;
}

.map-content {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  z-index: 1000;
}

.map-overlay.top-right {
  top: 12px;
  right: 12px;
}

.map-overlay.top-left {
  top: 12px;
  left: 12px;
}

.map-overlay.bottom-right {
  bottom: 24px;
  right: 24px;
}

.overlay-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.leaflet-container {
  outline: none;
}
