/* ================================================================
   Rating slider (dcc.Slider) — dark-theme visibility for the
   Strategy Manager Edit modal.

   Dash 4.x's dcc.Slider is built on an unstyled Radix Slider
   primitive (classNames dash-slider-*, not the old rc-slider
   library) and ships with NO default CSS at all — every visual
   property below (size, shape, color) has to be supplied here,
   not just re-themed.
   ================================================================ */

.dash-slider-root {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 20px;
    touch-action: none;
    user-select: none;
}

.dash-slider-track {
    position: relative;
    flex-grow: 1;
    height: 4px;
    border-radius: 9999px;
    background-color: #2a3a4a;
}

.dash-slider-range {
    position: absolute;
    height: 100%;
    border-radius: 9999px;
    background-color: #4cc9f0;
}

.dash-slider-thumb {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-sizing: border-box;
    background-color: #16202a;
    border: 2px solid #4cc9f0;
    cursor: pointer;
}

.dash-slider-thumb:hover,
.dash-slider-thumb:focus {
    outline: none;
    border-color: #6fd8ff;
    box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.25);
}
