/* ===== 打印专用样式 ===== */
.report-header {
    text-align: center;
    margin-bottom: 20px;
}

.report-header h2 {
    font-size: 18px;
    margin-bottom: 4px;
}

.report-header .period {
    font-size: 13px;
    color: #666;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.report-table th,
.report-table td {
    border: 1px solid #333;
    padding: 4px 8px;
}

.report-table .text-right {
    text-align: right;
}

.report-table .total-row {
    font-weight: bold;
    background: #f0f0f0;
}

.report-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

@media print {
    body {
        font-size: 11px;
    }
    
    .report-header h2 {
        font-size: 16px;
    }
}
