/* Casual copying deterrence. Interactive controls remain selectable and usable. */
html.copy-protection-enabled body,
html.copy-protection-enabled body *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]) {
  -webkit-user-select: none;
  user-select: none;
}

html.copy-protection-enabled input,
html.copy-protection-enabled textarea,
html.copy-protection-enabled select,
html.copy-protection-enabled option,
html.copy-protection-enabled [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

html.copy-protection-enabled img,
html.copy-protection-enabled svg {
  -webkit-user-drag: none;
  user-drag: none;
}
