/* Match the compact translucent hint used by the workspace controls everywhere. */
.app-tooltip {
  --tooltip-max-width: 280px;
  --tooltip-background: color-mix(in srgb, var(--ink, var(--text, #18201d)) 60%, transparent);
  --tooltip-foreground: var(--panel, var(--surface, #ffffff));
  position: fixed;
  inset: auto;
  z-index: 1000;
  box-sizing: border-box;
  width: max-content;
  max-width: min(280px, calc(100vw - 16px));
  margin: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: var(--tooltip-background);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: var(--tooltip-foreground);
  box-shadow: var(--shadow, 0 8px 24px rgb(0 0 0 / 12%));
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: start;
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
  overflow-wrap: anywhere;
  overflow: auto;
  overscroll-behavior: contain;
  pointer-events: auto;
}
.app-tooltip[hidden] { display: none; }
.app-tooltip::backdrop { background: transparent; pointer-events: none; }
.presentation .app-tooltip { --tooltip-background: rgb(234 240 237 / 60%); --tooltip-foreground: #101312; }
