input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd; /* Track color */
    border-radius: 5px !important;
    outline: none;
    opacity: 1;
    transition: opacity .15s ease-in-out;
  }

  /* Customize the thumb (the slider button) */
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8b8a7f; /* Thumb color */
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8b8a7f; /* Thumb color */
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  /* Styling for the range track (for Firefox) */
  input[type="range"]::-moz-range-track {
    height: 8px;
    background: #ddd; /* Track color */
    border-radius: 0px;
  }


  input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.0);
    background: #8b8a7f;
  }

  input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.0);
    background: #8b8a7f;
  }