#cookie-consent-box {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 90%;
	max-width: 400px;
	background-color: #121212;
	color: #e0e0e0;
	padding: 20px;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
	font-size: 14px;
	border-radius: 8px 0 0 0;
	box-shadow: 0 0 10px rgba(0,0,0,0.7);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
#cookie-consent-box a {
	color: #4eaaff;
	text-decoration: none;
}
#cookie-consent-box a:hover {
	text-decoration: underline;
}
#cookie-consent-box button {
	align-self: flex-start;
	background-color: #2a84ff;
	color: #fff;
	border: none;
	padding: 10px 22px;
	font-size: 14px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
#cookie-consent-box button:hover {
	background-color: #206ad1;
}
@media (min-width: 600px) {
	#cookie-consent-box {
		font-size: 15px;
		max-width: 360px;
		padding: 25px;
	}
}