/* ============================================================
   UNIVERSAL — text selection / long-press "search" popup block.
   Loaded on every page (public portfolio + all of secret-space).
   Pairs with no-select.js, which stops the few browser events CSS
   alone can't reach (contextmenu, selectstart, dragstart).
   ============================================================ */

html {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none; /* iOS Safari: kills the copy/lookup callout on long-press */
}

/* Inputs and textareas must stay selectable/editable -- otherwise
   typing, editing, and even placing the cursor breaks. This
   includes the Settings email/password fields and the chat
   message box (added in a later sub-step). */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}
