/* Stil für das Popup */
    .popup {
        display: none; /* Popup standardmäßig verstecken */
		color: black;
		max-width: 500px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ec7900f9;
        border: 1px solid #ccc;
		border-radius: 10px;
        padding: 35px;
        box-shadow: 4px 8px 1px rgba(0, 0, 0, 0.21);
        z-index: 1000;
		text-align: justify;
		hyphens: auto;
		-webkit-hyphens: auto;
    }
	#visitor-count {
		visibility: hidden;
		line-height: 0px;
	}
	
	@media (max-width: 600px) {
	.popup {
		width: 93%;
		padding: 8px;
		font-size: 0.9em;
		}
	.popup p{
		margin: 2px;
		line-height: 1.4em;
		}
	.popup h2{
		margin: 0px 2px;
		}
	.popup ul{
	margin: 0 2px;
		}
	}
    /* Stil für den Bestätigungsbutton */
    .popup-btn {
        padding: 10px 20px;
        background-color: black;
        color: #ec7900;
        border: none;
        cursor: pointer;
		font-size: large;
    }
	
	#popup ul {
	margin-top: 5px;
	}
	
	 /* Vibrieren-Animation */
    @keyframes vibrate {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        25% { transform: translate(-49%, -51%) rotate(0.5deg); }
        50% { transform: translate(-50%, -50%) rotate(0deg); }
        75% { transform: translate(-51%, -49%) rotate(-0.5deg); }
        100% { transform: translate(-50%, -50%) rotate(0deg); }
    }

    .vibrate {
        animation: vibrate 2.3s linear infinite;
    }
	
	
.cookie-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #333;
	color: #ecf0f1;
	padding: 20px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	display: none;
	font-size: 14px;
	border-radius: 10px;
	z-index: 1000;
}
.cookie-popup p {
	margin: 0 0 10px;
}
.cookie-popup a {
	color: #3498db;
	text-decoration: none;
}
.cookie-popup a:hover {
	text-decoration: underline;
}
.cookie-popup button {
	background-color: #e67e22;
	color: #ecf0f1;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
}
.cookie-popup button:hover {
	background-color: #d35400;
}