/* DESKTOP CSS for the privacy cookie banner */
#gdpr-banner {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(44, 44, 44, 0.95);
	color: #fff;
	padding: 1rem 2rem;
	font-family: sans-serif;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 0.5rem;
	z-index: 100;
	font-size: 0.9rem;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#gdpr-banner a {
	color: #fbb63f;
	text-decoration: underline;
}

.gdpr-btn {
	padding: 0.5rem 1rem;
	margin: 0.25rem;
	border: none;
	background: #987f37;
	color: #eee;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.gdpr-btn:hover {
	background: #e7e596;
	color: #222;
}

#optout-modal {
	display:none; 
	position:fixed; 
	top:20%; 
	left:50%; 
	transform:translateX(-50%); 
	background:#222; 
	color:white; 
	padding:2rem; 
	border-radius:8px; 
	border: 1px solid #987f37;
	max-width:500px; 
	z-index:10001;
}