/* Eigene Ergänzungen: blaue Statusleiste oben + Standort-Marker (Fahrrad) */

#topbar {
  position: relative;
  z-index: 1100;
  height: 56px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background-color: #00143C; /* Markenblau wie die Kopfleiste der Original-Website */
  color: #fff;
}

#topbar .topbar-title {
  margin: 0;
  font-family: "Univers LT W01_65 Bold1475968", "Univers LT", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

/* Platz für die Leiste schaffen: Karte füllt den Rest des Fensters */
#map {
  height: calc(100vh - 56px) !important;
}

/* Standort-Marker (Fahrrad-Icon) ohne Kachel-Hintergrund */
.user-location-icon {
  background: none;
  border: none;
}

/* "Meinen Standort anzeigen"-Button (unter dem Zoom-Control) */
.locate-control {
  margin-top: 10px;
}
.locate-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  cursor: pointer;
}
.locate-btn:hover {
  background: #f4f4f4;
}

/* Legenden-Farbpunkt für die Mauerweg-Radtour */
.border-color.orange {
  background-color: #F39200;
}

/* Hinweis-Banner für Standort-Feedback */
.locate-toast {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1200;
  max-width: 90%;
  padding: 10px 16px;
  background: #00143C;
  color: #fff;
  font-size: .9rem;
  line-height: 1.35;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  cursor: pointer;
}
