/* Disable selection site-wide except editable elements */
.crfp-no-select *:not(input):not(textarea):not([contenteditable="true"]):not(.allow-select) {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* Prevent image drag & context highlighting */
img.crfp-protect-img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* blocks right-click on images; remove if it breaks image-links */
}

/* Optional: translucent overlay text watermark on images (pseudo-element) */
/*
img.crfp-protect-img {
  position: relative;
}
img.crfp-protect-img::after {
  content: "© " attr(alt);
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  pointer-events: none;
}
*/
