body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f3f3f3;
}

.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  color: #333;
}

button {
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

button:hover {
  background-color: #0056b3;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.input-container input[type="number"] {
  width: calc(80% - 60px); /* Adjust the width as needed */
  padding: 10px;
  font-size: 16px;
}

.input-container button {
  padding: 10px 20px;
  font-size: 16px;
  margin-left: 10px; /* Add space between input and button */
}

input[type="range"] {
  margin: 10px 0;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px; /* Adjust thumb width */
  height: 15px; /* Adjust thumb height */
  background: #007bff; /* Adjust thumb color */
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #0056b3; /* Adjust thumb color on hover */
}

input[type="range"]::-webkit-slider-thumb:active {
  background: #003d80; /* Adjust thumb color on active state */
}
