/* ============================================================
   PROTECTIONS — Anti-copy, Anti-print, Watermark
   ============================================================ */

/* --- Disable text selection on content --- */
.md-content {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

/* Allow selection in search box */
.md-search__input,
.md-search__output {
  -webkit-user-select: text !important;
  user-select: text !important;
}

/* --- Block printing --- */
@media print {
  html, body {
    display: none !important;
    visibility: hidden !important;
  }
}

/* --- Watermark overlay --- */
#sop-watermark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

#sop-watermark .wm-text {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.045);
  white-space: nowrap;
  transform: rotate(-32deg);
  letter-spacing: 2px;
}

/* --- Disable image dragging --- */
.md-content img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
