.container {
  text-align: center;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}

.gauge {
  width: 320px;
  margin: 0 auto 20px auto;
}

.gauge-body {
  width: 100%;
  height: 160px;
  background: conic-gradient(
    from -90deg,
    green 0deg 72deg,
    yellow 72deg 130deg,
    red 130deg 180deg
  );
  border-radius: 160px 160px 0 0;
  position: relative;
  overflow: hidden;
}

.gauge-cover {
  width: 75%;
  height: 75%;
  background: white;
  border-radius: 160px 160px 0 0;
  position: absolute;
  bottom: 0;
  left: 12.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.needle {
  width: 6px;
  height: 150px;
  background: black;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: bottom center;
  transform: rotate(-90deg);
  transition: transform 0.4s ease-in-out;
}

input {
  padding: 8px;
  font-size: 18px;
  width: 250px;
}

.result-text {
  font-size: 26px;
  font-weight: bold;
  margin-top: 20px;
}

.disclaimer {
  font-size: 12px;
  color: #666;
  margin-top: 25px;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}