/* 日志滚动条 */
#log-output::-webkit-scrollbar { width: 5px; }
#log-output::-webkit-scrollbar-track { background: #0f172a; }
#log-output::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }

/* 股票列表滚动条 */
#stock-list::-webkit-scrollbar { width: 4px; }
#stock-list::-webkit-scrollbar-track { background: transparent; }
#stock-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
#stock-list::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* 队列列表滚动条 */
#queue-list::-webkit-scrollbar { width: 4px; }
#queue-list::-webkit-scrollbar-track { background: transparent; }
#queue-list::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }

/* flatpickr 输入框 */
#date-range { cursor: pointer; }

/* 过渡动画 */
* { transition-property: background-color, border-color, color, box-shadow; transition-duration: 150ms; }
