/* 使用独特的命名空间 .bimanibench-wrapper 避免干扰全局样式 */
.bimanibench-wrapper {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a202c;
    line-height: 1.5;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.bimanibench-wrapper section {
    margin-bottom: 60px;
}

.bimanibench-wrapper .table-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.bimanibench-wrapper .table-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 16px;
    display: block;
    font-weight: 400;
}

.bimanibench-wrapper .scroll-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.bimanibench-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background-color: #ffffff;
    text-align: center;
}

.bimanibench-wrapper th, 
.bimanibench-wrapper td {
    padding: 10px 8px;
    border: 1px solid #f0f0f0;
}

/* 表头样式 */
.bimanibench-wrapper thead th {
    background-color: #f9fafb;
    color: #374151;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.025em;
}

/* 模型名称列 - 左对齐 */
.bimanibench-wrapper td.model-name {
    text-align: left;
    padding-left: 16px;
    font-weight: 500;
    background-color: #ffffff;
    min-width: 180px;
}

/* 分组行样式 */
.bimanibench-wrapper tr.group-header td {
    background-color: #f3f4f6;
    font-weight: 700;
    color: #4b5563;
    text-align: center;
    font-size: 12px;
    padding: 8px;
}

/* 颜色高亮 - 对应 LaTeX 中的背景色 */
.bimanibench-wrapper .bg-total { background-color: #f3f4f6 !important; font-weight: 700; }
.bimanibench-wrapper .bg-indep { background-color: #fef3c7 !important; }
.bimanibench-wrapper .bg-seq { background-color: #d1fae5 !important; }

/* 悬停效果 */
.bimanibench-wrapper tr:hover td {
    background-color: #f9fafb;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .bimanibench-wrapper table { font-size: 11px; }
    .bimanibench-wrapper th, .bimanibench-wrapper td { padding: 6px 4px; }
}

.model-name {
    text-align: left;
    font-weight: 500;
    color: #007bff; /* 模型名字给个颜色，更有科技感 */
}


