#privacy-consent-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 15px 20px;
	box-sizing: border-box;
	display: none;
	z-index: 10001;
	border-top: 2px solid #444;
}
#privacy-consent-popup p {
	margin: 0 0 10px 0;
	font-size: 14px;
	line-height: 1.4;
}
#privacy-consent-popup a {
	color: #4a9eff;
	text-decoration: underline;
}
#privacy-consent-popup a:hover {
	color: #66b3ff;
}
.consent-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
}
.consent-buttons button {
	background-color: #4a9eff;
	color: #ffffff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}
.consent-buttons button:hover {
	background-color: #3a8eef;
}
.consent-buttons button.decline {
	background-color: #666;
}
.consent-buttons button.decline:hover {
	background-color: #555;
}
@media (max-width: 768px) {
	#privacy-consent-popup {
		padding: 12px 15px;
	}
	#privacy-consent-popup p {
		font-size: 13px;
	}
	.consent-buttons {
		flex-direction: column;
	}
	.consent-buttons button {
		width: 100%;
		padding: 10px;
	}
}