const consentBox=document.getElementById("consentBox"),acceptBtn=document.querySelector(".consentButton"),rejectBtn=document.querySelector(".rejectButton");acceptBtn.onclick=()=>{try{document.cookie="CookieBy=accept; max-age=2592000; SameSite=Lax; Secure",consentBox.classList.add("hide")}catch(e){console.error("Failed to set cookie:",e),consentBox.classList.add("hide")}},rejectBtn.onclick=()=>{consentBox.classList.add("hide")};try{document.cookie&&-1!==document.cookie.indexOf("CookieBy=accept")&&consentBox.classList.add("hide")}catch(e){console.error("Failed to read cookie:",e)}