/**
 * Universal Content Protection Styles
 * Prevents highlighting and dragging text/images
 */
body, img, a {
  -webkit-user-select: none;  /* Safari */
  -ms-user-select: none;      /* IE 10 and Edge */
  user-select: none;          /* Standard syntax */
  -webkit-user-drag: none;    /* Prevents dragging images/links */
}

