/* Ensure labels are aligned to the left */
label {
  text-align: left;
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}

/* Align input fields and icon tooltips next to labels */
.input-group {
  display: flex;
  align-items: center;
}

/* Tooltip style adjustments */
.tooltip-text {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  font-size: 0.9em;
  z-index: 10;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  visibility: hidden;
}

/* Show tooltip on hover */
.icon-tooltip:hover + .tooltip-text {
  visibility: visible;
}