@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/static/fonts/AtkinsonHyperlegibleNext-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/static/fonts/AtkinsonHyperlegibleNext-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "0xProto";
  src: url("/static/fonts/0xProto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-sans: "Atkinson Hyperlegible Next", system-ui, sans-serif;
  --font-mono: "0xProto", ui-monospace, monospace;
}
body { font-family: var(--font-sans); }
code, pre, .mono { font-family: var(--font-mono); }
#nt-desc { font-family: var(--font-sans); }
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background: #000;
  color: #fff;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.task-title {
  display: inline;
  margin-inline-end: var(--space-2);
}
.task-title + .badge {
  vertical-align: text-bottom;
}
.card > header:has(.task-title) {
  margin-block-end: var(--space-6);
}
details:has(> .table) {
  overflow: visible;
}
details:has(> .table) > .table {
  width: auto;
  min-width: 0;
}
[hidden] {
  display: none !important;
}

/* FAB */
.fab-group {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  z-index: 100;
}
.fab-toggle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.fab-toggle:hover {
  transform: scale(1.05);
}
.fab-toggle .fab-icon-close {
  display: none;
}
.fab-toggle[aria-expanded="true"] .fab-icon-plus {
  display: none;
}
.fab-toggle[aria-expanded="true"] .fab-icon-close {
  display: block;
}
.fab-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.fab-actions[hidden] {
  display: none !important;
}
.fab-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
