#cookie-consent-modal {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 500px;
	background-color: #fff;
	color: #333;
	padding: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	display: none;
	flex-direction: column;
	align-items: center;
	z-index: 100;
}
#cookie-consent-modal a {
	color: #1e88e5;
	text-decoration: none;
}
.cookie-buttons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
.cookie-buttons button {
	padding: 8px 12px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.accept-btn {
	background-color: #1e88e5;
	color: #fff;
}
.cancel-btn {
	background-color: #e0e0e0;
	color: #333;
}
@media(min-width:600px) {
	#cookie-consent-modal {flex-direction: row;justify-content: space-between;}
}