/* IP protection (mirrors the premium template's premium.css block).
   Images cannot be dragged out and pointer events never reach them, so
   "Save image as" has no image to target. Text selection is off, form
   fields exempt. Crawlers unaffected: markup and alt text unchanged. */
img,
video {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
body {
  -webkit-user-select: none;
  user-select: none;
}
input,
textarea,
select {
  -webkit-user-select: text;
  user-select: text;
}
