diff --git a/frontend/src/pages/admin/clients/TaxReportPage.tsx b/frontend/src/pages/admin/clients/TaxReportPage.tsx
index 6e15dd5e..c4733688 100644
--- a/frontend/src/pages/admin/clients/TaxReportPage.tsx
+++ b/frontend/src/pages/admin/clients/TaxReportPage.tsx
@@ -314,6 +314,7 @@ export const TaxReportPage: React.FC = () => {
handleExport('csv')}
disabled={exportsDisabled}
@@ -323,6 +324,7 @@ export const TaxReportPage: React.FC = () => {
{t('taxReport.exportCsv', 'Export CSV')}
handleExport('pdf')}
disabled={exportsDisabled}
@@ -334,9 +336,10 @@ export const TaxReportPage: React.FC = () => {
- {/* Group 2 — Accounting journal (for your accountant) */}
+ {/* Group 2 — Accounting journal (for your accountant). Solid
+ divider above to separate it from the Report group. */}
{flags.accounting && (
-
+
{t('taxReport.export.journalTitle', 'Accounting journal')}
@@ -354,13 +357,14 @@ export const TaxReportPage: React.FC = () => {
onChange={(e) => setLedgerFormat(e.target.value as ExportFormat)}
disabled={exportsDisabled}
aria-label={t('ledger.export.format', 'Target tool') as string}
- className={`${selectClassName} w-auto`}
+ className={`${selectClassName} min-w-[150px] w-auto`}
>
{LEDGER_FORMATS.map((f) => (
{t(`ledger.export.format_${f}`, f)}
))}