.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  background-image: url('../img/verify/info-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: white; /* This is optional since the SVG itself has color */
}

/* TinyMCE */
.mce-content-body a[data-bs-content] {
    position: relative;
}

.mce-content-body a[data-bs-content]:hover::after {
    content: attr(data-bs-content);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    z-index: 1000;
}
