.land {
	fill: #B8D6ED;
	stroke: white;
	stroke-width: 1;
}

.land:hover {
	fill: #008ECF;
}

.flyout {
	position: fixed;
	top: 0;
	right: -100%; /* Startposition des Flyouts - außerhalb des Bildschirms */
	width: 100%;
	height: 100%;
	background: white;
	border-left: 1px solid black;
	box-shadow: -2px 0 5px rgba(0,0,0,0.2);
	padding: 0;
	overflow-y: auto;
	transition: right 0.3s ease;
	z-index: 99999;
}

.flyout.active {
	right: 0; /* Flyout wird sichtbar, indem es hereinschiebt */
}

.close-btn {
	position: absolute;
	top: 24px;
	right: 30px;
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: #FFF;
}

.entry-item strong {
	color: #008ECF;
}

.entry-item h3 {
	font-size: 1rem;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: bold;
}

.entry-content {
	padding: 20px;
}

.header-bundesland {
	padding: 20px;
	background-color: #008ECF;
	color: #FFF;
}

.header-bundesland p {
	margin: 0;
	font-size: 24px;
}

.lgbtqmap hr {
	margin: 20px 0;
	border-color: #008ECF;
}

.flyout-label {
	color: #0a0a0a;
	font-weight: bold;

}

.item-group {
	margin-bottom: 25px;
}

.item-group:last-child {
	margin-bottom: 0;
}

.map-content-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.map-container {
	width: 100%;
	height: 0;
	padding-bottom: 75%; /* 4:3 aspect ratio */
	position: relative;
}

#map svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}

@media (min-width: 768px) {
	.entry-content {
		padding: 20px 40px;
	}
	.header-bundesland {
		padding: 20px 40px;
		background-color: #008ECF;
		color: #FFF;
	}

	.lgbtqmap hr {
		margin: 30px 0 37px 0px;
	}

	.flyout {
		width: 500px;
		right: -500px;
	}
}
