document.addEventListener("DOMContentLoaded", function() {
const increaseBtn = document.querySelector('[data-access-action="increaseText"]');
if (increaseBtn) {
increaseBtn.addEventListener("click", function () {
const tags = "p, span, div, a, li, td, th, label, input, textarea, button, h1, h2, h3, h4, h5, h6";
document.querySelectorAll(tags).forEach(function (el) {
const style = window.getComputedStyle(el, null).getPropertyValue('font-size');
const currentSize = parseFloat(style);
el.style.fontSize = (currentSize * 1.1) + "px";
});
});
}
});