html.content-protection-enabled body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html.content-protection-enabled img,
html.content-protection-enabled picture,
html.content-protection-enabled video,
html.content-protection-enabled canvas,
html.content-protection-enabled svg {
  -webkit-user-drag: none;
  user-select: none;
}

html.content-protection-enabled :is(
  input,
  textarea,
  select,
  [contenteditable="true"],
  [contenteditable="plaintext-only"],
  [data-copy-allowed]
) {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

@media print {
  html.content-protection-enabled body > * {
    display: none !important;
  }

  html.content-protection-enabled body::before {
    content: "Die Druckausgabe dieser Website ist deaktiviert.";
    display: block !important;
    padding: 48px;
    color: #111;
    background: #fff;
    font: 18px/1.5 Arial, sans-serif;
  }
}
