/* Disable user selection on whole page */
body {
    user-select: none;          /* Standard */
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE10+ */
  }
  
  /* Allow interaction with form inputs if any */
  input, textarea {
    user-select: text !important;
  }