/* Thermometer Component */
.thermometer-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem;
}

.thermometer {
  position: relative;
  width: 24px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thermometer-tube {
  position: relative;
  width: 10px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.thermometer-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: height 0.5s ease, box-shadow 0.3s ease;
  border-radius: 5px 5px 0 0;
}

.thermometer-bulb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: -2px;
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.thermometer-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}
