/* 
 * 里兹教务系统 - 学员交易记录（单表格含课程标题）
 * 每个课程记录 = 1 个表格，第一行为课程名（合并列）
 */

.credit-transactions-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* 单条记录：每个课程一个表格 */
.transaction-record-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    border: 1px solid #f0f0f0;
}

/* 课程标题行（首行） */
.transaction-record-table thead th {
    background: #f8f9fa;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

/* 明细行表头（隐藏，仅保留语义） */
.transaction-record-table tbody th {
    display: none;
}

/* 明细单元格 */
.transaction-record-table td {
    padding: 12px 20px;
    text-align: center;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
}

/* 最后一行去边框 */
.transaction-record-table tr:last-child td {
    border-bottom: none;
}

/* 操作列 */
.transaction-record-table .action-col {
    color: #07c160;
    font-weight: bold;
}

/* 金额列 */
.transaction-record-table .amount-col {
    color: #e94a3a;
    font-weight: bold;
}

/* 分页导航 */
.credit-transactions-pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.credit-transactions-pagination a {
    display: inline-block;
    padding: 10px 24px;
    background: #07c160;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.2s ease;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(7, 193, 96, 0.2);
}

.credit-transactions-pagination a:hover {
    background: #06ae54;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(7, 193, 96, 0.3);
}

/* 空状态 */
.credit-transactions-container p {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px 20px;
    line-height: 1.5;
}