.privacy-consent-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 350px;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	padding: 16px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #333;
	z-index: 10000;
	display: none;
}
.privacy-consent-popup p {
	margin: 0 0 12px 0;
	line-height: 1.4;
}
.privacy-consent-popup a {
	color: #007bff;
	text-decoration: none;
}
.privacy-consent-popup a:hover {
	text-decoration: underline;
}
.privacy-consent-popup .cookie-buttons {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
}
.privacy-consent-popup button {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: background-color 0.2s;
}
.privacy-consent-popup .accept-btn {
	background-color: #007bff;
	color: white;
}
.privacy-consent-popup .accept-btn:hover {
	background-color: #0056b3;
}
.privacy-consent-popup .close-btn {
	background-color: #f8f9fa;
	color: #6c757d;
	border: 1px solid #dee2e6;
}
.privacy-consent-popup .close-btn:hover {
	background-color: #e2e6ea;
}
@media (max-width: 480px) {
	.privacy-consent-popup {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}
	.privacy-consent-popup .cookie-buttons {
		flex-direction: column;
	}
}