/* Feedlingo Live Translate (XT-Style) widget */
#fltx_widget.fltx-widget{
  position: fixed;
  display: inline-flex;
  align-items: center;
  gap: var(--fltx-gap, 6px);
  padding: 0;
  font-size: var(--fltx-font, 12px);
  z-index: 99999;
  user-select: none;
}

#fltx_widget .fltx-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  padding: var(--fltx-py, 6px) var(--fltx-px, 10px);
  border: 1px solid var(--fltx-border, #e5e7eb);
  background: var(--fltx-bg, #ffffff);
  color: var(--fltx-text, #111827);
  border-radius: var(--fltx-rad, 999px);
}

#fltx_widget .fltx-link.is-active{
  background: var(--fltx-bgA, #f3f4f6);
  color: var(--fltx-textA, #111827);
}

/* Minimal style */
#fltx_widget.fltx-style-minimal .fltx-link{
  border-radius: 6px;
}

/* Defensive: prevent GT highlight backgrounds */
.goog-text-highlight{ background: transparent !important; box-shadow: none !important; }
