/* Visually “disabled” AI Search button */
button.jr-ai-coming-soon{
  opacity: .55;
  cursor: not-allowed;
  filter: grayscale(35%);
}

/* Disable any pseudo-tooltips from older versions (or cached CSS) */
button.jr-ai-coming-soon::after,
button.jr-ai-coming-soon::before{
  content: none !important;
  display: none !important;
}

/* Floating tooltip appended to <body> (cannot be clipped by table cells) */
.jr-ai-tooltip{
  position: fixed;
  z-index: 2147483647;
  font-size: 12px;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,.85);
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* Arrow */
.jr-ai-tooltip::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
}

.jr-ai-tooltip[data-place="top"]::after{
  top: 100%;
  border-top-color: rgba(0,0,0,.85);
}

.jr-ai-tooltip[data-place="bottom"]::after{
  bottom: 100%;
  border-bottom-color: rgba(0,0,0,.85);
}
