/* AI商机匹配页面专属样式 */

/* 自定义滚动条样式 */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 表格行悬停效果 */
#match-table-body tr:hover {
    background-color: #f9fafb;
}

/* 需求单元格样式 */
.req-cell {
    color: #374151;
}

/* 数字单元格样式 */
.num-cell {
    color: #6b7280;
    font-family: 'Courier New', monospace;
}

.num-cell.highlight {
    color: #1a73e8;
    font-weight: bold;
}

/* 推荐企业列表 */
.recommend-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.recommend-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: #374151;
    transition: color 0.2s;
}

.recommend-list li.cp-cell::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}

.recommend-list li.cp-cell {
    cursor: pointer;
}

.recommend-list li.cp-cell:hover {
    color: #007ae8;
}

.recommend-list .more {
    color: #1a73e8;
    cursor: pointer;
    font-size: 12px;
}

/* 分页按钮激活状态 */
#page-numbers button.active {
    background-color: #1a73e8;
    color: white;
    border-color: #1a73e8;
}
