/* A keyboard disclosure, not permanent chrome over the authored room. */
.jc-object-navigation {
  --jc-object-nav-paper: #edf0ef;
  --jc-object-nav-ink: #293338;
  --jc-object-nav-rule: #c9d2d6;
  --jc-object-nav-accent: #2456d5;
  --jc-object-nav-inset: max(12px, env(safe-area-inset-left, 0px));
  position: fixed;
  inset-inline-start: var(--jc-object-nav-inset);
  top: max(12px, env(safe-area-inset-top, 0px));
  z-index: 9998;
  box-sizing: border-box;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  color: var(--jc-object-nav-ink);
  background: var(--jc-object-nav-paper);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}
.jc-object-navigation:focus-within {
  width: max-content;
  height: auto;
  max-width: calc(100% - 2 * var(--jc-object-nav-inset));
  overflow: visible;
  clip-path: none;
  white-space: normal;
  padding: 4px;
  border: 1px solid var(--jc-object-nav-rule);
  border-radius: 3px;
}
.jc-object-navigation[hidden], .jc-object-navigation [hidden] { display: none !important; }
.jc-object-navigation button {
  min-height: 44px;
  padding: 8px 12px;
  border: 0;
  border-radius: 2px;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.jc-object-navigation button:focus-visible {
  outline: 2px solid var(--jc-object-nav-accent);
  outline-offset: -2px;
}
.jc-object-navigation button:disabled { opacity: .5; cursor: default; }
.jc-object-navigation__items { display: flex; flex-wrap: wrap; gap: 2px; border-top: 1px solid var(--jc-object-nav-rule); }
