h1#wb-cont,
.tooltip-root {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tooltip-root {
  position: relative;
}

.tooltip-icon {
  background: #007bff;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.tooltip-box {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  color: black;
  max-width: 300px;
  min-width: 300px;
  line-height: 1.4;
  font-weight: normal;
  z-index: 9999;
}

.tooltip-box a {
  font-weight: normal;
  text-decoration: underline;
  color: #007bff;
}

.tooltip-icon.active .tooltip-box {
  display: block;
}
