.ai-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.ai-button {
  position: relative;
  padding: 10px 16px;
  cursor: pointer;
}

.ai-button > img {
  width: 48px !important;
  display: block;
}

.ai-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ai-button:hover .ai-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}
