/* fix_selection.css */

/* ✅ Enable text selection inside Flutter-rendered canvas */
html,
body,
#flt-glass-pane,
#flutter_view_embed,
.flt-glass-pane {
  user-select: text !important;
  -webkit-user-select: text !important;
}

/* ❌ Prevent selection on decorative UI elements */
.preloader,
.header,
.placeholder {
  user-select: none !important;
  -webkit-user-select: none !important;
}
