/* Shared, additive safeguards for the hand-authored static pages. */
html {
  color-scheme: dark;
  font-kerning: normal;
  scroll-padding-top: 1rem;
  text-rendering: optimizeLegibility;
}

body {
  overflow-wrap: anywhere;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--cyan, #00dcff);
  outline-offset: 4px;
}

.evidence-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--border, #1a2235);
  border-radius: 3px;
}

.evidence-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(13, 21, 32, 0.62);
}

.evidence-table th,
.evidence-table td {
  padding: 11px 13px;
  border-bottom: 1px solid var(--border, #1a2235);
  text-align: left;
  vertical-align: top;
}

.evidence-table th {
  color: var(--cyan, #00dcff);
  font-family: "Share Tech Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-table tr:last-child td {
  border-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #fff !important;
    color: #111 !important;
  }

  .topbar,
  nav,
  footer {
    display: none !important;
  }

  a {
    color: #111 !important;
  }
}
