/*
 * Whiteford, Taylor & Preston — small hand-written overrides for the vanilla-JS/HTMX client,
 * loaded after the compiled main.css (see templates/base.html). Same purpose as pabst-patent-py's
 * static/css/site.css and pillsbury-py's apps/hydrogen|wind static/css/modern.css: CF's real
 * front end relied on jQuery plugins (JCF for custom <select> styling, Slick for carousels, ...)
 * that this port hasn't ported the JS for yet — main.css's own selectors for their styled output
 * (.jcf-select, .jcf-select-text, etc.) never match a bare, unenhanced <select>, so the plain
 * element needs its own visible styling instead.
 *
 * Blue filter bar (.c-bluefilters): the box/border/color styling this select needs now comes
 * from main.css's shared `.select-parent`/`.select-parent select` rules (templates/home.html
 * puts `select-parent` on `.c-bluefilters__dropdown` for this) -- kept here is only what that
 * shared rule doesn't cover: pinning the OPEN dropdown list's own <option> rows to readable
 * dark-on-white (a <select>'s open dropdown list doesn't reliably inherit page CSS across
 * browsers, so this can't be left to inheritance).
 */
.c-bluefilters select option {
    color: #1a1a1a;
    background-color: #fff;
}
