#privacy-consent-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #2c2c2c;
	color: #ffffff;
	padding: 12px 20px;
	box-sizing: border-box;
	display: none;
	flex-direction: column;
	align-items: center;
	z-index: 99999;
	border-top: 2px solid #444;
}
#privacy-consent-bar p {
	margin: 0 0 10px 0;
	font-size: 14px;
	text-align: center;
	line-height: 1.4;
}
#privacy-consent-bar a {
	color: #4CAF50;
	text-decoration: underline;
}
#privacy-consent-bar a:hover {
	color: #66BB6A;
}
#privacy-consent-bar .cookie-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}
#privacy-consent-bar button {
	background-color: #4CAF50;
	color: #ffffff;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.3s;
}
#privacy-consent-bar button:hover {
	background-color: #45a049;
}
#privacy-consent-bar .decline-btn {
	background-color: #757575;
}
#privacy-consent-bar .decline-btn:hover {
	background-color: #616161;
}
@media (min-width: 768px) {
	#privacy-consent-bar {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 15px 30px;
	}
	#privacy-consent-bar p {
		margin: 0;
		flex: 1;
		text-align: left;
		margin-right: 20px;
	}
	#privacy-consent-bar .cookie-buttons {
		flex-shrink: 0;
	}
}