
#health-tracker {
  display: flex;
  gap: 6px;
}

.health-dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}

.health-dot.red {
  background-color: #b00000;
  color: #fff;
}

.health-dot.green {
  background-color: #1f8b1f;
  color: #fff;
}


#healthTrackerWrap {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  visibility: hidden; /* reserve space when hidden */
  min-height: 28px;
}

#healthTrackerWrap.active {
  visibility: visible;
}
