body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* 默认滚动条样式 (SailsHub) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 115, 232, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(26, 115, 232, 0.3);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 115, 232, 0.5);
}

/* SailsAI 系统滚动条样式 */
[data-theme="ai"] ::-webkit-scrollbar-track {
  background: rgba(123, 91, 230, 0.05);
}

[data-theme="ai"] ::-webkit-scrollbar-thumb {
  background: rgba(123, 91, 230, 0.3);
}

[data-theme="ai"] ::-webkit-scrollbar-thumb:hover {
  background: rgba(123, 91, 230, 0.5);
}

