/* Style the cookie policy notification bar */
#cookie-notification 
{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #333;
	color: #fff;
	padding: 10px;
	text-align: center;
}

/* Style the close button */
#close-cookie-notification 
{
	cursor: pointer;
}
		
/* Style the fancy close button */
.fancy-button 
{
	background-color: #ff6600;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.fancy-button:hover {
	background-color: #ff4400;
}