document.addEventListener("DOMContentLoaded", function () {
if (window.innerWidth <= 959) {
const header = document.querySelector(".menu-wrapper");
if (header && !document.querySelector(".weekly-dose-mobile-btn")) {
const button = document.createElement("a");
button.href = "https://ncmedsoc.org/weekly-dose/";
button.className = "weekly-dose-mobile-btn";
button.textContent = "Weekly Dose";
header.appendChild(button);
}
}
});