/* Anti-copy deterrence (not absolute protection) */
body.protect-content {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body.protect-content input,
body.protect-content textarea,
body.protect-content [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
body.protect-content img,
body.protect-content video {
  -webkit-user-drag: none;
  user-drag: none;
}
