/**
 * 账户表格单元格边框样式
 * 简化边框设置，与右侧财务记录表格保持一致
 */

/* 使用标准的表格边框折叠模式 */
.account-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

/* 移除所有单元格的额外边框，使用Bootstrap默认的table-bordered样式 */
.account-table th,
.account-table td {
    /* 不再设置额外边框，使用Bootstrap的table-bordered类提供的边框 */
}

/* 确保表头底部边框与右侧表格一致 */
.account-table thead th {
    border-bottom: 2px solid #dee2e6 !important;
}

/* 确保表格外边框与右侧表格一致 */
#leftSidebar .table-responsive {
    border: 1px solid #dee2e6 !important;
}

/* 移除重复的边框设置，避免边框加粗 */ 