/* ─────────────────────────────────────────────
   LZA Translate — compact flag bar for Bludit
   ───────────────────────────────────────────── */

.plugin-lza-translate {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.plugin-lza-translate .lza-translate-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  line-height: 1;
}

/* GTranslate injects links/images inside the wrapper. */
.plugin-lza-translate .lza-translate-wrapper a,
.plugin-lza-translate .lza-translate-wrapper img {
  display: inline-block;
  vertical-align: middle;
}

.plugin-lza-translate .lza-translate-wrapper a {
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.plugin-lza-translate .lza-translate-wrapper img {
  margin: 0 !important;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.plugin-lza-translate .lza-translate-wrapper a:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

