/* 只做一件事：不要页面右侧的「目录」栏。其余排版全部沿用 Material 默认。 */

/* 宽屏：右侧独立的目录栏 */
.md-sidebar--secondary,
[data-md-type="toc"] {
  display: none !important;
}

/* 中等宽度（约 960–1220px）Material 会把目录塞进左侧导航当前页下面，也去掉 */
.md-nav--secondary {
  display: none !important;
}

/* 顶栏：anthropic.com 的暖米色（#f0eee6）做底、近黑（#141413）做字，两个值都取自其站点样式 */
.md-header {
  --md-primary-fg-color: #f0eee6;
  --md-primary-bg-color: #141413;
  --md-primary-bg-color--light: rgba(20, 20, 19, 0.54);
}
/* 宽屏时顶栏里的搜索框：Material 默认盖 26% 黑，在米色上太重，减淡 */
@media (min-width: 60em) {
  .md-search__form {
    background-color: rgba(20, 20, 19, 0.07);
  }
  .md-search__form:hover {
    background-color: rgba(20, 20, 19, 0.12);
  }
}
/* 深色模式：同一套暖色反过来用，避免一条亮米色横在深色页面上 */
[data-md-color-scheme="slate"] .md-header {
  --md-primary-fg-color: #1f1e1c;
  --md-primary-bg-color: #f0eee6;
  --md-primary-bg-color--light: rgba(240, 238, 230, 0.6);
}

/* 页脚「上一页 / 下一页」栏：上下留白压缩，整体高度约为默认的 75% */
.md-footer__link {
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
}
.md-footer__title {
  margin-bottom: 0.3rem;
}
