/* Anti-Copy & Anti-Inspect CSS Protections */

body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    -webkit-touch-callout: none; /* iOS Safari */
}

/* Allow selection in inputs and textareas so users can type */
input, textarea {
    -webkit-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}

/* Hide print view to avoid printing contents */
@media print {
    body {
        display: none !important;
    }
}
