.privacy-consent {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 85%;
	max-width: 500px;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 12px 16px;
	box-sizing: border-box;
	display: none;
	z-index: 10000;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
.privacy-consent p {
	margin: 0 0 12px 0;
	font-size: 14px;
	line-height: 1.4;
}
.privacy-consent a {
	color: #4a9eff;
	text-decoration: underline;
}
.privacy-consent a:hover {
	color: #66b3ff;
}
.privacy-consent-buttons {
	display: flex;
	gap: 8px;
	justify-content: center;
}
.privacy-consent button {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: background-color 0.2s;
}
.privacy-consent .accept-btn {
	background-color: #28a745;
	color: white;
}
.privacy-consent .accept-btn:hover {
	background-color: #218838;
}
.privacy-consent .decline-btn {
	background-color: #6c757d;
	color: white;
}
.privacy-consent .decline-btn:hover {
	background-color: #5a6268;
}
@media (max-width: 480px) {
	.privacy-consent {
		width: 95%;
		padding: 10px 12px;
	}
	.privacy-consent p {
		font-size: 13px;
	}
	.privacy-consent-buttons {
		flex-direction: column;
	}
	.privacy-consent button {
		padding: 10px;
	}
}