#privacy-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	width: calc(100% - 40px);
	max-width: 90%;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 20px;
	box-sizing: border-box;
	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;
	padding: 0;
}
#privacy-consent a {
	color: #4CAF50;
	text-decoration: underline;
}
#privacy-consent a:hover {
	color: #66BB6A;
}
.consent-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}
.consent-buttons button {
	background-color: #4CAF50;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	transition: background-color 0.3s;
	min-width: 80px;
}
.consent-buttons button:hover {
	background-color: #45a049;
}
.consent-buttons button.decline {
	background-color: #666666;
}
.consent-buttons button.decline:hover {
	background-color: #555555;
}
@media (max-width: 480px) {
	#privacy-consent {
		bottom: 10px;
		left: 10px;
		right: 10px;
		width: calc(100% - 20px);
		padding: 15px;
	}
	.consent-buttons {
		flex-direction: column;
	}
	.consent-buttons button {
		width: 100%;
		margin-bottom: 8px;
	}
}