#consent-modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 90%;
	background-color: rgba(0,0,0,0.9);
	color: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#consent-modal a {
	color: #1e90ff;
	text-decoration: underline;
}
#consent-modal .buttons {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}
#accept-btn, #close-btn {
	background-color: #1e1e1e;
	color: #fff;
	border: 1px solid #555;
	padding: 8px 12px;
	border-radius: 4px;
	cursor: pointer;
}
@media(min-width: 768px) {
	#consent-modal {
		flex-direction: row;
		justify-content: space-between;
		max-width: 600px;
	}
}