/*
 * In-chat find (Cmd/Ctrl+F) match styling — CSS Custom Highlight API.
 *
 * Served as a static asset and linked from the root layout <head> rather than
 * imported through the app's CSS pipeline: the production CSS optimizer doesn't
 * recognize the `::highlight()` pseudo-element and warns on it. Static files in
 * public/ are served verbatim, so no optimizer ever parses these rules.
 *
 * Consumed by src/components/Chat/ChatWindow/ChatSession/ChatSearchOverlay.jsx,
 * which registers the `chat-search` / `chat-search-active` highlights at runtime.
 */
::highlight(chat-search) {
    background-color: rgba(250, 204, 21, 0.35);
    border-radius: 2px;
}

::highlight(chat-search-active) {
    background-color: rgba(249, 115, 22, 0.75);
    color: #fff;
}
