#cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #111;
color: #fff;
padding: 15px 20px;
display: none;
z-index: 9999;
font-family: Arial, sans-serif;
}
#cookie-consent-banner p {
margin: 0;
font-size: 14px;
line-height: 1.6;
}
#cookie-consent-banner a {
color: #4da3ff;
text-decoration: underline;
}
#cookie-consent-banner button {
background: #4da3ff;
border: none;
color: #fff;
padding: 8px 14px;
font-size: 14px;
cursor: pointer;
border-radius: 4px;
margin-left: 10px;
}
#cookie-consent-banner button:hover {
background: #3587e0;
}
@media (max-width: 600px) {
#cookie-consent-banner {
flex-direction: column;
}
#cookie-consent-banner button {
margin-top: 10px;
margin-left: 0;
}
}
document.addEventListener(“DOMContentLoaded”, function () {
if (!localStorage.getItem(“cookieConsent”)) {
document.getElementById(“cookie-consent-banner”).style.display = “flex”;
}
document.getElementById(“accept-cookies”).addEventListener(“click”, function () {
localStorage.setItem(“cookieConsent”, “accepted”);
document.getElementById(“cookie-consent-banner”).style.display = “none”;
});
});
