/* ── Content Protection ───────────────────────────────────────────────────── */
/* Prevents casual text selection, image saving, and print-to-PDF copying.   */

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection in form controls */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Prevent image drag-save */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
}

/* Hide content when printing */
@media print {
  body { display: none !important; }
}
