/**
 * SRI Nuts Mart - Source Code Protection CSS
 * Prevents text selection and content dragging on non-form elements.
 */

/* Disable text selection globally */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Re-enable selection for form elements */
input,
textarea,
select,
[contenteditable="true"],
.ql-editor,
.tox-edit-area,
.note-editable {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important;
}

/* Prevent image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Prevent link dragging */
a {
    -webkit-user-drag: none;
    user-drag: none;
}
