/* Content Protection Styles */
/* Prevents user selection, copying, and interaction */

* {
    /* Disable text selection */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    
    /* Disable copy/paste functionality */
    -webkit-touch-callout: none !important;
    
    /* Disable drag and drop */
    -webkit-user-drag: none !important;
}

/* Allow select on input/textarea fields for usability */
input,
textarea,
select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Disable right-click menu styling */
body {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Prevent image dragging */
img {
    pointer-events: none;
    -webkit-user-drag: none !important;
}

/* Prevent link drag */
a {
    -webkit-user-drag: none !important;
}

/* Disable text highlighting on buttons */
button,
input[type="button"],
input[type="submit"] {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Disable context menu on images */
img {
    pointer-events: none;
    -webkit-user-select: none !important;
}

/* Prevent iframe access */
iframe {
    pointer-events: none;
}
