.range-slider {
    position: relative;
    width: 255px;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 10px;
  }
  
  .range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    z-index: 2;
    height: 0;
  }
  
  .range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    background-color: #3b82f6;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    z-index: 3;
  }
  .slider-track{
    background-color: blue;
    width: 100%;
    height: 100%;
  }
  .range-slider .slider-track {
    position: absolute;
    height: 8px;
    background: #ff0000;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .range-slider .slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
.range-slider span{
    margin-top: 10px;
}
  .ayarlislider{
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color:#f9f9f9;
    align-items: center;
    
  }