/* Vollbild-Karte */
html, body, #map {
  height: 100%;
  min-height: 100dvh;
  margin: 0;
}

/* Controls ueber der Karte */
.controls {
  position: absolute; /* ueber der Karte */
  top: 0px;
  left: 0px;
  z-index: 1000; /* ueber Leaflet-Layern */
  background: rgba(255,255,255,0.9);
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  font-size: 14px;
}

.controls input,
.controls select,
.controls button {
  margin-top: 0px;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.controls button {
  margin-top: 8px;
}

#authControlPassword {
  width: 120px;
}

#mapControlPosResult {
  font-size: 12px;
  line-height: 1.3;
}

