/* 全局滚动条美化 */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #6366F1, #8B5CF6);
	border-radius: 4px;
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #4F46E5, #7C3AED);
	transform: scale(1.05);
}

::-webkit-scrollbar-corner {
	background: transparent;
}

/* Firefox滚动条样式 */
html {
	scrollbar-width: thin;
	scrollbar-color: #6366F1 rgba(255, 255, 255, 0.1);
}




/* 自定义滚动条样式 */
.history-list::-webkit-scrollbar {
	width: 10px;
}

.history-list::-webkit-scrollbar-track {
	background: #2C2C2E;
	border-radius: 5px;
}

.history-list::-webkit-scrollbar-thumb {
	background: #0A84FF;
	border-radius: 5px;
	transition: background 0.3s;
}

.history-list::-webkit-scrollbar-thumb:hover {
	background: #007AFF;
}

/* Firefox 滚动条样式 */
.history-list {
	scrollbar-width: thin;
	scrollbar-color: #0A84FF #2C2C2E;
}