/* 批量检查结果样式优化 */

/* 批量结果容器 */
.batch-results-container {
    margin-top: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background-color: #fff;
    padding: 15px;
}

/* 批量文件结果项 */
.batch-file-result {
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

/* 文件头部 */
.batch-file-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
}

.batch-file-name {
    font-weight: bold;
    color: #333;
}

.batch-file-count {
    color: #ff4d4f;
    font-weight: 500;
}

/* 关键词表格样式 */
.batch-file-keywords-table {
    width: 100%;
    border-collapse: collapse;
}

.batch-file-keywords-table th,
.batch-file-keywords-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.batch-file-keywords-table th {
    background-color: #fafafa;
    font-weight: 500;
    color: #333;
}

/* 三列布局优化 */
.batch-file-keywords-table th:nth-child(1),
.batch-file-keywords-table td:nth-child(1) {
    width: 30%;
    text-align: left;
}

.batch-file-keywords-table th:nth-child(2),
.batch-file-keywords-table td:nth-child(2) {
    width: 20%;
    text-align: center;
}

.batch-file-keywords-table th:nth-child(3),
.batch-file-keywords-table td:nth-child(3) {
    width: 50%;
    text-align: right;
}

/* 关键词单元格样式 */
.batch-keyword {
    color: #ff4d4f;
    font-weight: 500;
}

.batch-keyword-count {
    color: #1890ff;
    font-weight: 500;
    text-align: center;
}

.batch-keyword-replacement {
    color: #52c41a;
}

/* 无结果提示 */
.no-batch-results {
    padding: 20px;
    text-align: center;
    color: #999;
}

/* 批量检查结果计数 */
.batch-results-summary {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f0f2f5;
    border-radius: 4px;
    font-size: 16px;
}

.batch-found-count {
    color: #ff4d4f;
    font-weight: bold;
}

/* 隐藏文件详情标签 */
.file-details-label {
    display: none !important;
}
