/* Central account-report workspace shared by statement and totals reports. */

body.account-report-page .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

body.account-report-page .section-header h2 {
    margin: 0;
}

body.account-report-page .report-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.account-report-page .filter-form {
    align-items: end;
}

body.account-report-page .filter-form label {
    display: block;
}

body.account-report-page .filter-form :where(input, select) {
    width: 100%;
    box-sizing: border-box;
}

body.account-report-page .notes-cell {
    text-align: right;
}

@media print {
    body.account-report-page :where(.no-print, .topbar, .header) {
        display: none !important;
    }

    body.account-report-page {
        background: #fff;
    }

    body.account-report-page .section {
        box-shadow: none;
        border: none;
        padding: 0;
    }
}
