/* =====================================================
 * 好好工具 - 暗黑模式补充样式
 * 主样式已通过 [data-theme="dark"] 切换, 此文件可放额外覆盖
 * ===================================================== */

[data-theme="dark"] body { color-scheme: dark; }
[data-theme="dark"] input, [data-theme="dark"] textarea, [data-theme="dark"] select { color-scheme: dark; }

/* 滚动条 */
[data-theme="dark"] ::-webkit-scrollbar { width: 10px; height: 10px; }
[data-theme="dark"] ::-webkit-scrollbar-track { background: var(--bg); }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #334155; border-radius: 5px; }
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { background: #475569; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* 选区颜色 */
::selection { background: rgba(14,165,233,.25); color: inherit; }
