/* Copy-protection styling for public pages (see public/js/copy-protection.js).
   This is a UX deterrent only — see the header of that file for why. */

.copy-protected{
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
}

/* Inputs, editable areas, and anything explicitly opted back in must stay
   selectable/copyable — form fields and admin-style content are never
   covered by this stylesheet. */
.copy-protected input,
.copy-protected textarea,
.copy-protected select,
.copy-protected [contenteditable],
.copy-protected [contenteditable] *,
.copy-protected .selectable,
.copy-protected .selectable *{
  user-select:text;
  -webkit-user-select:text;
  -moz-user-select:text;
  -ms-user-select:text;
}

.copy-protected img{
  -webkit-user-drag:none;
  user-drag:none;
  pointer-events:auto;
}
