#wp-geo-map {
	height: 500px;
	width: 100%;
}

.map-popup {
	max-width: 220px;
	line-height: 1.4;
}

.map-popup img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 8px;
	border-radius: 4px;
}

.map-popup-title {
	font-weight: 700;
}

.user-marker {
	filter: hue-rotate(120deg);
}

#wp-geo-map {
	height: 500px;
	width: 100%;
}

/* Popup bleibt optional */
.map-popup {
	max-width: 220px;
	line-height: 1.4;
}

.map-popup img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 8px;
	border-radius: 4px;
}

.map-popup-title {
	font-weight: 700;
}

/* ===== Bottom Sheet (NEU) ===== */

#wp-geo-sheet {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100%;
	background: white;
	border-radius: 16px 16px 0 0;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
	transition: bottom 0.3s ease;
	padding: 16px;
	z-index: 9999;
}

#wp-geo-sheet.active {
	bottom: 0;
}

#wp-geo-sheet img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;
}

#wp-geo-sheet h3 {
	margin: 5px 0;
}

#wp-geo-sheet button {
	margin-top: 10px;
	padding: 10px;
	width: 100%;
	border: none;
	background: #2E86C1;
	color: white;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
}

#wp-geo-close {
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	font-size: 18px;
}