html, body { height: 100%; margin: 0; }
#map { height: 100%; }

/* Suchleiste EXAKT wie Bild 3 */
.search-bar-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  background: #fff;
  border: 3px solid #C4A000;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(160, 120, 0, 0.13);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  min-width: 280px;
  max-width: 94vw;
  width: 410px;
  gap: 8px;
}
.search-bar-input {
  flex: 1;
  font-size: 1.16em;
  padding: 8px 12px;
  border: 1.5px solid #C4A000;
  border-radius: 5px;
  outline: none;
  background: #fff;
  font-family: inherit;
}
.search-bar-btn {
  background: #C4A000;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 22px;
  font-size: 1.08em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.18s;
  font-family: inherit;
  box-shadow: 0 1px 4px rgba(160,120,0,0.06);
}
.search-bar-btn:hover {
  background: #a87d00;
}

/* Autocomplete results */
.search-bar-results {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #C4A000;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 210px;
  overflow-y: auto;
  z-index: 1201;
  box-shadow: 0 6px 24px rgba(160,120,0,0.09);
  display: none;
  font-size: 1.11em;
}
.search-bar-results.active { display: block; }
.search-bar-result {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f4e2ab;
  background: #fff;
  font-family: inherit;
}
.search-bar-result:last-child {
  border-bottom: none;
}
.search-bar-result:hover,
.search-bar-result.active {
  background: #ffe9b0;
}

/* Popup wie Bild 3 */
.leaflet-popup-content-wrapper {
  background: #fff;
  color: #111;
  border: 3px solid #C4A000;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(160,120,0,0.13);
  font-family: system-ui, sans-serif;
  padding: 0;
}
.leaflet-popup-tip {
  background: #C4A000;
}
.popup-content {
  padding: 14px 20px 14px 20px;
  font-size: 17px;
  line-height: 1.6;
  color: #222;
}
.popup-title {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #a80000;
  letter-spacing: 0.5px;
}
.popup-description {
  margin-bottom: 9px;
  font-style: italic;
  color: #333;
}
.popup-address {
  font-weight: bold;
  color: #222;
  margin-bottom: 4px;
  font-size: 1.10em;
}
.popup-note {
  margin-top: 4px;
  font-size: 14px;
  color: #666;
}
.popup-source {
  margin-top: 8px;
  font-size: 15px;
}
.popup-source a { color: #1976d2; text-decoration: underline; }

/* Cluster-Viereck */
.stoneSquare {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #000;
  background: #C4A000;
  border: 2px solid #444;
  border-radius: 4px;
  font-size: 18px;
  user-select: none;
}

/* Legende */
.legend {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #fffff0;
  border: 1px solid #C4A000;
  padding: 4px 6px;
  font-size: 12px;
  z-index: 999;
}
a {
  color: #C4A000;
  text-decoration: none;
}