#privacy-consent {
	position: fixed;
	bottom: 15px;
	left: 15px;
	right: 15px;
	width: calc(100% - 30px);
	max-width: 90%;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	z-index: 99999;
	display: none;
	box-sizing: border-box;
}
#privacy-consent p {
	margin: 0 0 15px 0;
	font-size: 14px;
	line-height: 1.4;
}
#privacy-consent a {
	color: #4CAF50;
	text-decoration: underline;
}
#privacy-consent a:hover {
	color: #66BB6A;
}
.consent-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.consent-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s;
}
.accept-btn {
	background-color: #4CAF50;
	color: white;
}
.accept-btn:hover {
	background-color: #45a049;
}
.decline-btn {
	background-color: #757575;
	color: white;
}
.decline-btn:hover {
	background-color: #616161;
}
@media (max-width: 480px) {
	#privacy-consent {
		bottom: 10px;
		left: 10px;
		right: 10px;
		width: calc(100% - 20px);
		padding: 15px;
	}
	.consent-buttons {
		flex-direction: column;
	}
	.consent-btn {
		width: 100%;
	}
}