.range-container {
    width: 100%;
    max-width: 580px;
    text-align: center;
    font-family: sans-serif;
  }

  .range-labels {
    display: flex;
    justify-content: space-between;
    margin: 0 -5% 15px;
    font-size: 20px;
    cursor: pointer;
  }

  .range-labels span {
    flex: 1;
    text-align: center;
    position: relative;
  }

  input[type="range"] {
    width: 100%;
    appearance: none;
    height: 14px;
    background: #ccc;
    border-radius: 11px;
    outline: none;
  }

  input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 32px;
    height: 32px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -5px;
    border: none;
  }

  input[type="range"]::-moz-range-thumb {
    width: 32px;
    height: 32px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
  }

  input[type="range"]::-moz-range-progress {
    background-color: #007bff;
    height: 14px;
    border-radius: 11px;
  }

  .selected-value {
    margin-top: 10px;
    font-weight: bold;
  }