/* A floating table of contents using pico */

details#toc {
  position: fixed;
  top: 2rem;
  right: 4rem;
  width: 10rem;
  z-index: 1000;
  border-radius: var(--border-radius);
  box-shadow: var(--card-box-shadow);
  background: var(--pico-card-background-color);
  overflow: hidden;
}

#toc nav a {
  color: var(--primary);
}

/* Zoom out */

main.container {
  max-width: none;
  padding-left: 3rem;
  padding-right: 3rem;
}

html {
  font-size: 90%;
}

/* Fixed table headers */

thead th {
  position: sticky;
  top: 0;
}
