/* ── Select disable globally ──────────────────────────────────── */
*,
*::before,
*::after {
  -webkit-user-select:   none;
     -moz-user-select:   none;
      -ms-user-select:   none;
          user-select:   none;
  -webkit-touch-callout: none;
}

/* ── Inputs mein select allow ─────────────────────────────────── */
input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

/* ── Image drag + save disable ────────────────────────────────── */
img {
  -webkit-user-drag: none;
  -khtml-user-drag:  none;
  -moz-user-drag:    none;
  -o-user-drag:      none;
  -webkit-user-drag:         none;
  pointer-events:    none;
}

/* ── Interactive elements pe pointer events raho ──────────────── */
a,
button,
input,
select,
textarea,
label,
[role="button"] {
  pointer-events: auto;
}

/* ── Print — sab hide ─────────────────────────────────────────── */
@media print {
  body * {
    display:    none    !important;
    visibility: hidden  !important;
  }
  body::after {
    display:     block   !important;
    visibility:  visible !important;
    content:     "Printing is not allowed on this portal.";
    font-size:   1.8rem;
    text-align:  center;
    margin-top:  40vh;
    color:       #0D2B55;
    font-weight: 700;
  }
}