This website uses cookies to ensure you get the best experience on our website. Learn more
.cookie-container {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background-color: #222;
color: #fff;
padding: 15px;
border-radius: 8px;
text-align: center;
z-index: 9999;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.cookie-container a {
color: #4fc3f7;
text-decoration: underline;
}
.cookie-container button {
margin-left: 10px;
padding: 8px 16px;
background-color: #4fc3f7;
border: none;
border-radius: 5px;
color: #000;
font-weight: bold;
cursor: pointer;
}
function acceptCookies() {
localStorage.setItem("cookiesAccepted", "true");
document.getElementById("cookieNotice").style.display = "none";
}
window.onload = function () {
if (!localStorage.getItem("cookiesAccepted")) {
document.getElementById("cookieNotice").style.display = "block";
}
};