/* ---------------------------------------------------------------------------
   Old-live hotfix: Capacity / Speed editable-combobox arrow            2026-07-06
   ---------------------------------------------------------------------------
   The Lift tab's Capacity and Speed fields overlay a free-text <input> on a
   preset <select>. The selected option is normally "-- Please select --"
   (a typed value like 2000 is not one of the presets); with the input covering
   only the left ~70px, that long label bled into the right strip and clipped /
   replaced the native dropdown arrow (it showed as a stray "...ect" glyph).

   Fix: draw our own down-chevron and make the select's closed-state text
   transparent (the overlaid input already shows the real value). Ported from
   the V6 new-design.css fix, using literal colours instead of --nd-* tokens.

   Auto-loaded by the ASP.NET theme engine (it links every .css in
   App_Themes/Default). Named "zz-" so it sorts last; !important guarantees the
   override regardless of link order. Does NOT touch Default.css.
   --------------------------------------------------------------------------- */
#CbxCapacity select, #CbxSpeed select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    color: transparent !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238C95A3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
    background-size: 12px !important;
}
/* color:transparent above would also hide the open list — restore option text. */
#CbxCapacity select option, #CbxSpeed select option { color: #333 !important; }