.custom-tooltip {
  position: absolute;
  z-index: 9999;
  background-color: rgba(33, 33, 33, 0.95);
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--font-sans, "Inter", sans-serif);
  font-size: 13px;
  line-height: 1.4;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(5px);
  animation: tooltipFadeIn 0.2s ease-out forwards;
  max-width: 250px;
  text-align: right;
  direction: rtl;
}

@keyframes tooltipFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.expert-mode .custom-tooltip {
  display: none !important;
}
