.has-tooltip {
  position: relative;
  cursor: pointer;
  border-bottom: 1px dashed #333; /* Optional: add some visual indication */
}

.has-tooltip[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

.has-tooltip[data-tooltip]:hover::after {
  opacity: 1;
}

.editor-styles-wrapper .has-tooltip {
  border-bottom: 1px dashed #333; /* Optional: add some visual indication */
}

.editor-styles-wrapper .components-popover__content,

.is-w-300  .components-popover__content
{
  width: 300px;
  padding: 10px;
}