/* Site-wide interaction rules */
.no-user-select,
.no-user-select * {
  -webkit-user-select: none;
  user-select: none;
}

/* Form fields remain usable and their text remains selectable. */
.no-user-select input,
.no-user-select textarea,
.no-user-select select,
.no-user-select [contenteditable="true"],
.no-user-select [contenteditable="plaintext-only"] {
  -webkit-user-select: text;
  user-select: text;
}
