body {
	margin: 0;
	background: transparent;
	font-family: sans-serif;
}

#map {
	height: 100vh;
	width: 100%;
	background: transparent;
}

.custom-star {
	border: none;
	background: none;
}

.leaflet-control-attribution a {
    color: #c09a5d !important; /* Dein Gold-Ton */
    text-decoration: none;
}

.leaflet-control-attribution a:hover {
    text-decoration: underline;
}

/* Styling für das Scroll-Fenster im Popup */
.projekt-liste {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 200px;
	overflow-y: auto;
	padding-right: 15px;
	/* Platz für die Scrollleiste schaffen */
}

/* Verschiebt die Zoom-Steuerung ein wenig mehr nach links/unten vom Rand weg */
.leaflet-top.leaflet-right {
	margin-top: 10px;
	margin-right: 10px;
}

/* Macht die Buttons passend zu deinem Gold-Look */
.leaflet-bar a {
	background-color: #fff;
	color: #c09a5d;
	/* Dein Gold-Ton */
	border-bottom: 1px solid #ccc;
}

.leaflet-bar a:hover {
	background-color: #f4f4f4;
	color: #a07e4a;
}

#map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	/* Dunkler Hintergrund */
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1001;
	/* Über der Karte */
	opacity: 0;
	pointer-events: none;
	/* Wichtig: Man kann durchklicken! */
	transition: opacity 0.3s ease;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}

/* Schmalere Scrollleiste für moderne Browser (Chrome, Edge, Safari) */
.projekt-liste::-webkit-scrollbar {
	width: 6px;
}

.projekt-liste::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.projekt-liste::-webkit-scrollbar-thumb {
	background: #c09a5d;
	/* Dein Gold-Ton */
	border-radius: 10px;
}

/* Für Firefox */
.projekt-liste {
	scrollbar-width: thin;
	scrollbar-color: #c09a5d #f1f1f1;
}