/* Accessible Notes brand theme for mdbook */
/* Forces light theme and overrides all mdBook color variables */

:root {
  color-scheme: light;

  /* Backgrounds and foregrounds */
  --bg: #ffffff;
  --fg: #09090b;

  /* Sidebar */
  --sidebar-bg: #f8f9fa;
  --sidebar-fg: #09090b;
  --sidebar-active: #d97706;
  --sidebar-spacer: #e4e4e7;

  /* Scrollbar */
  --scrollbar: #d4d4d8;

  /* Icons */
  --icons: #71717a;
  --icons-hover: #09090b;

  /* Links and inline code */
  --links: #d97706;
  --inline-code-color: #b45309;

  /* Search */
  --search-mark-bg: #fbbf24;

  /* Table */
  --table-border-color: #e4e4e7;
  --table-header-bg: #f4f4f5;
  --table-alternate-bg: #fafafa;

  /* Typography */
  --content-max-width: 800px;
  --mono-font: "Source Code Pro", Consolas, "Ubuntu Mono", Menlo, monospace;
}

/* Hide the theme picker — we force light theme */
#theme-toggle,
.theme-popup {
  display: none !important;
}

/* Sidebar active item highlight */
.sidebar .active {
  color: var(--sidebar-active);
  font-weight: 600;
}
