#consent-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 400px;
	background-color: #f9f9f9;
	color: #333;
	padding: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	display: none;
	z-index: 1000;
	box-sizing: border-box;
}
#consent-modal a {
	color: #0066cc;
	text-decoration: underline;
}
#consent-modal .buttons {
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
#consent-modal button {
	padding: 8px 12px;
	border: none;
	background-color: #0066cc;
	color: #fff;
	cursor: pointer;
}
#consent-modal button.cancel {
	background-color: #aaa;
}
@media (min-width: 480px) {
	#consent-modal {
		border-radius: 4px;
		left: calc(50% - 200px);
		width: 400px;
	}
}