{
const textProtectionStyle = document.createElement("style");
    textProtectionStyle.type = "text/css";
    textProtectionStyle.innerHTML = 'body {-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}';
    document.head.appendChild(textProtectionStyle);}