/* base.css —— reset / 字体栈 / color-scheme / 滚动条。 */

/* =========================================================================
   三、基础
   ========================================================================= */
html{ height:100%; font-size:var(--trpb-font-size); }

body{
  height:100%; margin:0; overflow:hidden; overscroll-behavior:none;
  background:var(--trpb-stage-bg); color:var(--trpb-text);
  font-family:var(--trpb-sans); font-size:1rem; line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

button{ font-family:inherit; }

h1,h2,p{ margin:0; }

:focus-visible{ outline:none; }

.trpb-body::-webkit-scrollbar,.trpb-chat-list::-webkit-scrollbar{ width:6px; }

.trpb-body::-webkit-scrollbar-thumb,.trpb-chat-list::-webkit-scrollbar-thumb{
  background:var(--trpb-scroll); border-radius:3px;
}

@media (prefers-reduced-motion:reduce){
  *{ transition-duration:1ms !important; }
}
