/**
 * 账户表格金额字体大小调整样式
 * 调整部门余额和实际余额列中数值的字体大小
 * 注释掉可能与统一行高冲突的样式
 */

/* 部门余额和实际余额列的字体大小调整 - 暂时注释，使用统一设置 */
/*
.account-table td:nth-child(2),
.account-table td:nth-child(3) {
    font-size: 0.82rem !important;
}
*/

/* 确保货币符号也同步缩小 - 暂时注释，使用统一设置 */
/*
.account-table td:nth-child(2) span,
.account-table td:nth-child(3) span {
    font-size: 0.82rem !important;
}
*/

/* 保持表头字体大小适中 - 暂时注释，使用统一设置 */
/*
.account-table th:nth-child(2),
.account-table th:nth-child(3) {
    font-size: 0.88rem !important;
}
*/

/* 确保数值垂直居中 */
.account-table td:nth-child(2),
.account-table td:nth-child(3) {
    vertical-align: middle !important;
}

/* 优化数值间距，提高可读性 */
.account-table td.amount-cell span {
    letter-spacing: -0.3px !important;
}

/* 确保较大数值也能完整显示 */
.account-table td.amount-cell {
    padding-right: 10px !important;
}

/* 强制覆盖可能导致字体变大的样式 - 暂时注释，使用统一设置 */
/*
.account-table {
    font-size: 0.85rem !important;
}
*/

/* 确保第一列（账户列）字体大小保持不变 - 暂时注释，使用统一设置 */
/*
.account-table td:first-child {
    font-size: 0.85rem !important;
}
*/

/* 重置可能被其他样式覆盖的字体大小 - 暂时注释，使用统一设置 */
/*
.account-table td.amount-cell * {
    font-size: 0.82rem !important;
}
*/ 