.privacy-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #f8f9fa;
	border-top: 1px solid #dee2e6;
	padding: 12px 16px;
	box-sizing: border-box;
	display: none;
	z-index: 10001;
	font-family: Arial, sans-serif;
	font-size: 14px;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.privacy-consent p {
	margin: 0 0 10px 0;
	color: #495057;
	line-height: 1.4;
}
.privacy-consent a {
	color: #007bff;
	text-decoration: none;
}
.privacy-consent a:hover {
	text-decoration: underline;
}
.privacy-consent .cookie-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 (min-width: 768px) {
	.privacy-consent {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 24px;
	}
	.privacy-consent p {
		margin: 0;
		flex: 1;
		margin-right: 16px;
	}
	.privacy-consent .cookie-buttons {
		justify-content: flex-end;
		flex-shrink: 0;
	}
}