/* TelccFree — page protection helpers (native text selection; no custom selection pill) */

html.telc-protected,
html.telc-protected body {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  /* Allow native iOS/Android long-press callout (Copy / Translate / Share). */
  -webkit-touch-callout: default;
}

html.telc-protected input,
html.telc-protected textarea,
html.telc-protected select,
html.telc-protected [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Retired: custom Copy / Translate floating selection toolbar */
#telc-selection-toolbar {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ── Hören audio controls ───────────────────────────── */

audio[controls] {
  -webkit-user-select: none;
  user-select: none;
}

audio[controls]::-webkit-media-controls-enclosure {
  overflow: hidden;
}

audio[controls]::-webkit-media-controls-panel {
  width: calc(100% + 32px);
}
