/* Public CeloAI pages: prevent accidental page-text selection. */
html,
body,
body * {
  -webkit-user-select: none;
  user-select: none;
}

/* Keep interactive form controls usable where a page needs them. */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}
