/* Overlay & Modal */
#impressum-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: none;
	justify-content: center;
	align-items: center;
}

#impressum-popup:target {
	display: flex;
}

#datenschutz-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: none;
	justify-content: center;
	align-items: center;
}

#datenschutz-popup:target {
	display: flex;
}

.popup-content {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	width: 90%;
	max-width: 800px;
	max-height: 80vh; /* Begrenzung der Höhe */
	overflow-y: auto;  /* Scrollbar bei Überlauf */
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	position: relative;
	text-align: left;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 20px;
	text-decoration: none;
	color: #333;
}

.popup-content h2 {
	margin-top: 0;
}