	html, body {
	  margin: 0;
	  padding: 0;
	  height: 100vh;
	  font-family: sans-serif;
	}
	body {
	  display: flex;
	  flex-direction: column;
	}
	#map {
	  flex: 1;
	  width: 100%;
	}
	
	/* Hamburger Menu Styles */
	.hamburger-menu {
	  position: absolute;
	  top: 20px;
	  left: 20px;
	  z-index: 1000;
	}
	
	.hamburger-btn {
	  background: rgba(255, 255, 255, 0.95);
	  backdrop-filter: blur(10px);
	  border: 1px solid rgba(255, 255, 255, 0.2);
	  border-radius: 25px;
	  width: 50px;
	  height: 50px;
	  cursor: pointer;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  gap: 4px;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	  transition: all 0.3s ease;
	}
	
	.hamburger-btn:hover {
	  background: rgba(52, 152, 219, 0.1);
	  transform: translateY(-1px);
	  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
	}
	
	.hamburger-btn span {
	  width: 20px;
	  height: 2px;
	  background: #666;
	  transition: all 0.3s ease;
	}
	
	.hamburger-btn:hover span {
	  background: #3498db;
	}
	
	.hamburger-content {
	  position: absolute;
	  top: 60px;
	  left: 0;
	  background: rgba(255, 255, 255, 0.95);
	  backdrop-filter: blur(10px);
	  border: 1px solid rgba(255, 255, 255, 0.2);
	  border-radius: 15px;
	  padding: 10px 0;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	  min-width: 150px;
	  opacity: 0;
	  visibility: hidden;
	  transform: translateY(-10px);
	  transition: all 0.3s ease;
	}
	
	.hamburger-content.show {
	  opacity: 1;
	  visibility: visible;
	  transform: translateY(0);
	}
	
	.hamburger-content a {
	  display: block;
	  padding: 12px 20px;
	  color: #666;
	  text-decoration: none;
	  transition: all 0.2s ease;
	  font-size: 14px;
	  font-weight: 500;
	}
	
	.hamburger-content a:hover {
	  background: rgba(52, 152, 219, 0.1);
	  color: #3498db;
	}
	
	/* GPS Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin: 15% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 20px 25px 15px;
  border-bottom: 1px solid rgba(52, 152, 219, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.3em;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #3498db;
}

.modal-body {
  padding: 20px 25px 25px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 14px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(52, 152, 219, 0.2);
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
}

.input-group input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 25px;
}

.btn-primary, .btn-secondary {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #3498db;
  color: white;
}

.btn-primary:hover {
  background: #2980b9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.btn-secondary:hover {
  background: rgba(52, 152, 219, 0.2);
  transform: translateY(-1px);
}

/* Remove Leaflet zoom controls */
	.leaflet-control-zoom {
	  display: none !important;
	}
	
	#layerToggle button {
	  padding: 10px;
	  font-size: 18px;
	  border-radius: 50%;
	  background: white;
	  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	  border: none;
	  cursor: pointer;
	}
	#layerMenu {
	  margin-top: 10px;
	  display: none;
	  background: white;
	  padding: 10px;
	  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	  border-radius: 12px;
	  min-width: 150px;
	}
	#layerMenu label {
	  display: block;
	  cursor: pointer;
	  margin: 4px 0;
	}
	#layerMenu input[type="checkbox"] {
	  display: none;
	}
	#layerMenu span {
	  display: block;
	  padding: 6px 10px;
	  border-radius: 8px;
	  transition: background 0.2s;
	}
	#layerMenu input[type="checkbox"]:checked + span {
	  background-color: #3498db;
	  color: white;
	}
	.km-label {
	background: #3498db;
	color: white;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: bold;
	border: 2px solid white;
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
	}
.navbar,
.navbar-right {
  position: absolute;
  bottom: 40px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}
   .navbar-right-up {
   position: absolute;
   top: 60px;
   right: 10px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   z-index: 1000;
 }

.navbar-right {
  left: unset;
  right: 10px;
}

/* MODERN BUTTON STYLE */
.navbar button,
.navbar-right button {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  width: 60px;
  height: 60px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  color: #666;
}

.navbar button:hover,
.navbar-right button:hover,
.navbar button:active,
.navbar-right button:active {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
}

.navbar button:focus-visible,
.navbar-right button:focus-visible {
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.12);
}

.navbar button .material-icons,
.navbar button .material-symbols-outlined,
.navbar-right button .material-icons,
.navbar-right button .material-symbols-outlined {
  transition: transform 0.2s ease;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.navbar button:hover .material-icons,
.navbar button:hover .material-symbols-outlined,
.navbar-right button:hover .material-icons,
.navbar-right button:hover .material-symbols-outlined {
  transform: scale(1.1);
}

/* Map Switcher Styles */
.map-switcher {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 2px;
}

.map-btn {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  outline: none;
  min-width: auto;
}

.map-btn:hover {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  transform: translateY(-1px);
}

.map-btn.active {
  background: #3498db;
  color: white;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.map-btn .material-icons {
  font-size: 16px;
}

/* Autocomplete Styles */
.autocomplete-container {
  position: relative;
  width: 100%;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10001;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.suggestions.show {
  display: block;
}

.suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item .street-name {
  font-weight: 500;
  color: #333;
}

.suggestion-item .street-type {
  font-size: 12px;
  color: #666;
  margin-left: 8px;
}

/* Spezielle Styles für verschiedene Straßentypen */
.suggestion-item.bundesstrasse .street-type {
  color: #e74c3c;
  font-weight: 500;
}

.suggestion-item.schnellstrasse .street-type {
  color: #f39c12;
  font-weight: 500;
}

.suggestion-item.autobahn .street-type {
  color: #3498db;
  font-weight: 500;
}

/* Hover-Effekte für Vorschläge */
.suggestion-item:hover {
  background-color: #f8f9fa;
}

.suggestion-item.bundesstrasse:hover {
  background-color: #fdf2f2;
}

.suggestion-item.schnellstrasse:hover {
  background-color: #fef9e7;
}

.suggestion-item.autobahn:hover {
  background-color: #ebf3fd;
}

/* Street Markers */
.street-marker {
  stroke-width: 5;
  stroke-opacity: 0.9;
  fill: none;
  cursor: pointer;
  transition: stroke-width 0.2s ease;
}

.street-marker:hover {
  stroke-width: 7;
}

.street-marker.street1 {
  stroke: #e74c3c;
}

.street-marker.street2 {
  stroke: #3498db;
}




/* Material Icon Marker Styles */
.custom-div-icon {
  background: none;
  border: none;
}

.material-icon-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #3498db;
  transition: all 0.2s ease;
}

.material-icon-marker:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.material-icon-marker .material-icons {
  font-size: 18px;
  color: #666;
  line-height: 1;
}

/* Spezifische Farben für verschiedene POI-Typen */
.material-icon-marker[data-type="apotheke"] {
  border-color: #e74c3c !important;
}

.material-icon-marker[data-type="apotheke"] .material-icons {
  color: #e74c3c !important;
}

.material-icon-marker[data-type="hausarzt"] {
  border-color: #27ae60 !important;
}

.material-icon-marker[data-type="hausarzt"] .material-icons {
  color: #27ae60 !important;
}

.material-icon-marker[data-type="krankenhaus"] {
  border-color: #9b59b6 !important;
}

.material-icon-marker[data-type="krankenhaus"] .material-icons {
  color: #9b59b6 !important;
}

/* Standard BOS-Styles (werden von spezifischen BOS-Typen überschrieben) */
.material-icon-marker[data-type="bos"] {
  border-color: #e67e22;
}

.material-icon-marker[data-type="bos"] .material-icons {
  color: #e67e22;
}

/* Spezifische BOS-Typen mit unterschiedlichen Hintergrundfarben - höhere Spezifität */
.material-icon-marker[data-type="bos"][data-bos-type="fire_station"] {
  background: #ff6b6b !important;
  border-color: #e74c3c !important;
}

.material-icon-marker[data-type="bos"][data-bos-type="fire_station"] .material-icons {
  color: white !important;
}

.material-icon-marker[data-type="bos"][data-bos-type="police"] {
  background: #74b9ff !important;
  border-color: #0984e3 !important;
}

.material-icon-marker[data-type="bos"][data-bos-type="police"] .material-icons {
  color: white !important;
}

.material-icon-marker[data-type="bos"][data-bos-type="ambulance_station"] {
  background: white !important;
  border-color: #e67e22 !important;
}

.material-icon-marker[data-type="bos"][data-bos-type="ambulance_station"] .material-icons {
  color: #e67e22 !important;
}

.material-icon-marker[data-type="gates_pollers"] {
  border-color: #34495e !important;
}

.material-icon-marker[data-type="gates_pollers"] .material-icons {
  color: #34495e !important;
}

/* POI Info Styles */
.poi-info {
  position: fixed;
  top: 100px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  max-width: 300px;
}

.poi-info.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.poi-info.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

.poi-info.warning {
  border-color: #f39c12;
  background: rgba(243, 156, 18, 0.1);
}

.poi-count {
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.poi-warning {
  color: #e67e22;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.poi-error {
  color: #e74c3c;
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
