:root {
  --slider-color: #3D7D1C;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 20px;
  border-radius: 10px !important;
  background: #e5e7eb;
  border-radius: 2px;
  outline: none;
}

/* Thumb */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--slider-color);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.slider::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--slider-color);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 48rem) {
  .slider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }
  .slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
  }
}

.slider::-moz-range-track {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
}

.progress-bar {
  width: 100%;
  height: 16px;
  background: #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}
.progress-fill {
  height: 100%;
  background: var(--slider-color);
  border-radius: 8px;
  width: 0%;
  transition: width 0.3s ease;
}
