/* App chrome is not selectable; editing fields keep native selection/copy. */
html, body { touch-action: pan-x pan-y; }
#root, #root * {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none;
}
#root input, #root textarea, #root [contenteditable="true"], #root [contenteditable="true"] * {
  -webkit-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default;
}
