
/* 客户筛选按钮样式 */
.client-filter {
    background-color: #F9FAFB;
    color: #667085;
    font-weight: 500;
}

.client-filter.active {
    background-color: #165DFF;
    color: white;
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.2);
}

.client-filter:hover:not(.active) {
    background-color: #F1F5F9;
    color: #1D2939;
}

/* 客户项样式 */
.client-item {
    color: #1D2939;
    font-weight: 500;
    border: 1px solid #F1F5F9;
}

.client-item:hover {
    transform: translateY(-2px);
    border-color: #E0E7FF;
}

/* 隐藏滚动条但保留功能 */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 适配Font Awesome 4的体育场图标 */
.fa-stadium {
    content: "\f1e3";
}

