.privacy-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	max-width: 350px;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	z-index: 10001;
	display: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}
.privacy-consent p {
	margin: 0 0 15px 0;
}
.privacy-consent a {
	color: #4CAF50;
	text-decoration: none;
}
.privacy-consent a:hover {
	text-decoration: underline;
}
.privacy-consent .cookie-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.privacy-consent button {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	transition: background-color 0.3s;
}
.privacy-consent .accept-btn {
	background-color: #4CAF50;
	color: white;
}
.privacy-consent .accept-btn:hover {
	background-color: #45a049;
}
.privacy-consent .decline-btn {
	background-color: #666;
	color: white;
}
.privacy-consent .decline-btn:hover {
	background-color: #555;
}
@media (max-width: 480px) {
	.privacy-consent {
		left: 10px;
		right: 10px;
		max-width: none;
		bottom: 10px;
	}
	.privacy-consent .cookie-buttons {
		flex-direction: column;
	}
	.privacy-consent button {
		width: 100%;
	}
}