/* In your CSS file (e.g., style.css) */
#stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px; 
}

#stats .stat {
  display: flex;          /* Enable flexbox */
  flex-direction: column;  /* Stack elements vertically */
  text-align: center;     /* Center the text */
  align-items: center;
}

#stats input[type="range"] {
  width: 80%;
  height: 8px;
}

#stats input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; 
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #4CAF50; 
  cursor: pointer;
}
