/**
 * 2-Second English (투세컨) Global Protection Styles
 * ----------------------------------------------------
 * [PROTECTION LEVEL: HIGH]
 * - Disables text selection across the entire app
 * - Disables image dragging
 */

/* Prevent Text Selection */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
}

/* Re-enable selection for inputs and editable areas */
input,
textarea,
[contenteditable="true"],
.allow-select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Optional: Hide print output if someone tries to print via system shortcuts */
@media print {
    body {
        display: none !important;
    }
}