/* 全局滚动条样式 */
* {
  scrollbar-width: thin;
  scrollbar-color: #bfbfbf #f5f5f5;
}

*::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 2px;
}

*::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 2px;
  transition: background 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background: #999999;
}

*::-webkit-scrollbar-corner {
  background: #f5f5f5;
}

/* 针对表格和容器的特殊处理 */
.ant-table-body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.ant-table-body::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 3px;
}

.ant-table-body::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 2px;
}

.ant-table-body::-webkit-scrollbar-thumb:hover {
  background: #bfbfbf;
}