/* Add custom Js styles below */
document.addEventListener("DOMContentLoaded", function () {
const phoneBar = document.createElement("div");
phoneBar.className = "top-phone-bar";
phoneBar.innerHTML = `
📞
خدمة العملاء
0564440223
`;
document.body.prepend(phoneBar);
});