 .calculator {
      max-width: 600px;
      margin: 80px auto;
      background-color: #222;
      padding: 40px;
      color: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .title {
      font-size: 24px;
      margin-bottom: 10px;
    }
    .description {
      font-size: 14px;
      margin-bottom: 20px;
      padding-bottom: 10px;
    }
    .slider-group {
      margin-bottom: 20px;
      border-top: white 1px solid;
    }
    /* .slider-group label {
      display: block;
      margin-bottom: 8px;
      font-size: 16px;
    } */
    /* .slider-group input[type="range"] {
      width: 100%;
    } */
    .results {
      font-size: 16px;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 1px solid white;
    }
    .results div {
      margin-bottom: 10px;
    }

    /* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}


html, body {
  width: 100%;
  overflow-x: hidden;
}




.slider-group {
  position: relative;
}

.ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
  font-size: 12px;
  color: white;
}

.ticks span {
  position: relative;
}

.ticks span::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 2px;
  height: 10px;
  background: white;
  transform: translateX(-50%);
}


.ticks {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-top: 5px;
}

.ticks span {
  position: relative;
  text-align: center;
  width: 50px;
}

.ticks span::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  width: 2px;
  height: 8px;
  background: white;
  transform: translateX(-50%);
}


