/* 
  Slider Fix - This file is a workaround for a broken build process.
  It is loaded directly in index.html to bypass the react-scripts/tailwindcss build pipeline
  which is failing to include these styles.
*/

input[type="range"]::-webkit-slider-track {
    background-color: #F1F2F5 !important;
}

input[type="range"]::-moz-range-track {
    background-color: #F1F2F5 !important;
}

.dark input[type="range"]::-webkit-slider-track {
    background-color: #374151 !important;
}

.dark input[type="range"]::-moz-range-track {
    background-color: #374151 !important;
} 