/* Global, erişilebilir ikon açıklamaları */
#enbGlobalTooltip {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100500;
  max-width: min(260px, calc(100vw - 24px));
  padding: 7px 10px;
  border: 1px solid rgba(148, 163, 184, .26);
  border-radius: 9px;
  background: rgba(15, 23, 42, .96);
  color: #fff;
  box-shadow: 0 12px 30px rgba(2, 6, 23, .24);
  font: 750 12px/1.25 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .01em;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-9999px, -9999px, 0) scale(.97);
  transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
}

#enbGlobalTooltip[data-open="1"] {
  opacity: 1;
  visibility: visible;
  transform: translate3d(var(--enb-tooltip-x, -9999px), var(--enb-tooltip-y, -9999px), 0) scale(1);
}

#enbGlobalTooltip::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
  border: inherit;
  transform: rotate(45deg);
}

#enbGlobalTooltip[data-side="top"]::after {
  left: calc(50% - 4px);
  bottom: -5px;
  border-left: 0;
  border-top: 0;
}

#enbGlobalTooltip[data-side="bottom"]::after {
  left: calc(50% - 4px);
  top: -5px;
  border-right: 0;
  border-bottom: 0;
}

#enbGlobalTooltip[data-side="left"]::after {
  right: -5px;
  top: calc(50% - 4px);
  border-left: 0;
  border-bottom: 0;
}

#enbGlobalTooltip[data-side="right"]::after {
  left: -5px;
  top: calc(50% - 4px);
  border-right: 0;
  border-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  #enbGlobalTooltip { transition: none; }
}
