/* Add custom Js styles below */ document.addEventListener("DOMContentLoaded", function () { const target = document.querySelector(".footer-bottom .container"); if (target && !document.querySelector(".wiz-credit")) { const credit = document.createElement("div"); credit.className = "wiz-credit"; credit.innerHTML = ` Made with ❤ WIZFREELANCE `; credit.style.cssText = ` text-align:center; margin-top:12px; padding:10px 0; font-size:13px; color:var(--footer-color); width:100%; `; credit.querySelector("a").style.cssText = ` color:var(--color-primary); text-decoration:none; font-weight:600; `; target.appendChild(credit); } });