 /* Protection CSS */
             * {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        /* Input এ টাইপ করা যাবে */
        input, textarea {
            user-select: text;
            -webkit-user-select: text;
        }
        img {
            pointer-events: none; /* ছবি drag করা যাবে না */
        }
        * {
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
         /* Protection CSS */