#cookie-banner {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 90%;
	max-width: 350px;
	background: linear-gradient(45deg, #ff9a9e, #fad0c4);
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 5px;
	z-index: 9999;
}
#cookie-banner p {
	margin: 0 0 10px;
}
#cookie-banner .buttons {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
#cookie-banner button {
	background-color: rgba(0,0,0,0.2);
	border: none;
	color: #fff;
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 3px;
}
@media (max-width: 480px) {
	#cookie-banner {
		width: 95%;
		padding: 10px;
	}
}