/**
 * 账户表格表头居中对齐样式
 * 确保账户表格的所有表头文字水平居中对齐
 */

/* 账户表格表头居中对齐 */
.account-table thead th {
    text-align: center !important;
    font-weight: 600 !important;
}

/* 确保动态生成的表格也能应用样式 */
.table-container .account-table thead th,
#leftSidebar .account-table thead th {
    text-align: center !important;
}

/* 增加表头视觉区分度 */
.account-table thead {
    border-bottom: 2px solid #dee2e6 !important;
}

/* 确保表头文字颜色对比度适中 */
.account-table thead th {
    color: #495057 !important;
} 