/* SeeAgent 自定义补充样式（Tailwind CDN 之外的小幅补充） */

html {
  scroll-behavior: smooth;
  /* 锚点导航时避免被固定顶部导航遮挡 */
  scroll-padding-top: 5rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

/* 自定义滚动条，配合深色主题 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}
