.privacy-consent {
	position: fixed;
	bottom: 15px;
	left: 15px;
	right: 15px;
	width: calc(100% - 30px);
	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: 10000;
	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;
}
.privacy-consent .cookie-buttons {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.privacy-consent button {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}
.privacy-consent button:hover {
	background-color: #45a049;
}
.privacy-consent button.decline {
	background-color: #757575;
}
.privacy-consent button.decline:hover {
	background-color: #616161;
}
@media (max-width: 480px) {
	.privacy-consent {
		bottom: 10px;
		left: 10px;
		right: 10px;
		width: calc(100% - 20px);
		padding: 15px;
		font-size: 13px;
	}
	.privacy-consent .cookie-buttons {
		justify-content: center;
	}
	.privacy-consent button {
		padding: 8px 16px;
		font-size: 13px;
	}
}