.tooltip {
  position: relative;
  display: inline-grid!important;
  text-decoration: underline dotted 2px;
}

.q-mark.tooltip {
  display: inherit;
  text-decoration: inherit;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px .1rem;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%; /* Position above the text */
  right: 0;
}

.tooltip:hover .tooltiptext, .tooltip:focus .tooltiptext {
  visibility: visible;
}
