/* Find-bar (Cmd/Ctrl+F) match highlights, painted via the CSS Custom
   Highlight API — a visual layer only, never markup in the highlighted
   elements. Lives outside globals.css because Lightning CSS doesn't parse
   ::highlight() and drops the rules from the production bundle. */
::highlight(find-match) {
  background-color: #fde68a;
  color: #111827;
}

::highlight(find-match-current) {
  background-color: #fb923c;
  color: #111827;
}
