/* Tinnitus Ripple manual — light Furo customisation.
   Furo already handles light/dark; we only nudge the brand accent. */

:root {
  --color-brand-primary: #2f6f6b;
  --color-brand-content: #2f6f6b;
}

@media (prefers-color-scheme: dark) {
  body:not([data-theme="light"]) {
    --color-brand-primary: #7fd1c9;
    --color-brand-content: #7fd1c9;
  }
}

body[data-theme="dark"] {
  --color-brand-primary: #7fd1c9;
  --color-brand-content: #7fd1c9;
}

/* Slightly roomier tables for the reference pages. */
table.docutils td,
table.docutils th {
  padding: 0.4rem 0.7rem;
}

/* Footer credit links: brand green by default (not Furo's muted grey),
   underlined on hover. */
.copyright a {
  color: var(--color-brand-content);
  text-decoration: none;
}
.copyright a:hover {
  text-decoration: underline;
}
