.privacy-consent-popup {
	position: fixed;
	bottom: 17px;
	left: 17px;
	right: 17px;
	width: calc(100% - 34px);
	max-width: 90%;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	z-index: 10001;
	display: none;
}
.privacy-consent-popup p {
	margin: 0 0 15px 0;
	font-size: 14px;
	line-height: 1.4;
}
.privacy-consent-popup a {
	color: #4a9eff;
	text-decoration: underline;
}
.privacy-consent-popup a:hover {
	color: #66b3ff;
}
.privacy-consent-popup .cookie-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.privacy-consent-popup button {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.2s;
}
.privacy-consent-popup .accept-btn {
	background-color: #4a9eff;
	color: #ffffff;
}
.privacy-consent-popup .accept-btn:hover {
	background-color: #3a8eef;
}
.privacy-consent-popup .decline-btn {
	background-color: #666666;
	color: #ffffff;
}
.privacy-consent-popup .decline-btn:hover {
	background-color: #555555;
}
@media (max-width: 480px) {
	.privacy-consent-popup {
		bottom: 10px;
		left: 10px;
		right: 10px;
		width: calc(100% - 20px);
		padding: 15px;
	}
	.privacy-consent-popup .cookie-buttons {
		flex-direction: column;
	}
	.privacy-consent-popup button {
		width: 100%;
	}
}