document.addEventListener("DOMContentLoaded", function () { if (window.location.hash) { let targetTab = document.querySelector(window.location.hash); if (targetTab) { setTimeout(() => { targetTab.scrollIntoView({ behavior: "smooth", block: "start" }); }, 500); } } });