.cpu-thermometer-vert {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  margin: 20px auto;
  max-width: 140px;
  height: 400px;
}

.thermometer-goal {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: bold;
}

.thermometer-tube {
  position: relative;
  width: 60px;
  height: 100%;
  background: #eeeeee;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.1);
}

.thermometer-tube::before {
  content: "";
  position: absolute;
  right: 8px;
  width: 18px;
  height: 100%;
  background-image: repeating-linear-gradient(
    to top,
    transparent,
    transparent 19px,
    rgba(0, 0, 0, 0.2) 20px
  );
  z-index: 1;
  pointer-events: none;
}

.thermometer-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: height 2s ease-out;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.thermometer-percent {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 1rem;
  z-index: 3;
  pointer-events: none;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.7);
}

.thermometer-label {
  margin-top: 10px;
}
