/* Global Content Protection & Security Deterrents */
@media print {
    body {
        display: none !important;
        /* Prevent printing */
    }
}

/* Prevent text selection across the site */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in input/textarea/editable fields */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}