/* Disable text selection */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Disable mobile long‑press actions */
* {
  -webkit-touch-callout: none;
}

/* Prevent image dragging */
img {
  pointer-events: none;
}
