#cookie-banner {
	position: fixed;
	z-index: 100;
	right: 0;
	bottom: 0;
	width: 300px;
	background: linear-gradient(45deg, #ff8a00, #e52e71);
	color: #fff;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	box-sizing: border-box;
}
#cookie-banner a {
	color: #fff;
	text-decoration: underline;
}
.cookie-buttons {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px;
	gap: 10px;
}
#cookie-banner button {
	background-color: rgba(0,0,0,0.2);
	border: none;
	padding: 10px 15px;
	color: #fff;
	cursor: pointer;
}
@media (max-width: 600px) {
	#cookie-banner {
		width: 100%;
		padding: 15px;
	}
}
@media (min-width: 601px) and (max-width: 1024px) {
	#cookie-banner {
		width: 50%;
	}
}