#cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #f6f8fa, #e9ecef);
	padding: 20px;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, .2);
	z-index: 1000;
	text-align: center;
	font-family: Arial, sans-serif;
	color: #333;
}

#cookie-popup p {
	margin: 0 0 10px 0;
	font-size: 20px;
}

#cookie-popup a {
	color: #007bff;
	text-decoration: none;
}

#cookie-popup a:hover {
	text-decoration: underline;
}

#cookie-popup button {
	margin: 0 10px;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 18px;
	transition: all .3s ease;
}

#accept-cookies {
	background: linear-gradient(135deg, #22b14c, #1a8f3a);
	color: white;
}

#accept-cookies:hover {
	background: linear-gradient(135deg, #1a8f3a, #22b14c);
	transform: scale(1.05);
}

#decline-cookies {
	background: linear-gradient(135deg, #22b14c, #1a8f3a);
	color: white;
}

#decline-cookies:hover {
	background: linear-gradient(135deg, #1a8f3a, #22b14c);
	transform: scale(1.05);
}

@media (max-width: 600px) {
	#cookie-popup {
		padding: 15px;
	}
	
	#cookie-popup button {
		display: block;
		width: 100%;
		margin: 5px 0;
	}
}