/* /Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-shell[b-k1g0r10bfx] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(390px, 43%) 1fr;
    background: #fff;
}

.auth-panel[b-k1g0r10bfx] {
    position: relative;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    padding: 30px clamp(32px, 7vw, 112px) 30px;
    background: #fff;
    z-index: 1;
}

/* The mark: colour icon in a white disc, centred over the form. */
.auth-mark[b-k1g0r10bfx] {
    display: grid;
    flex: none;
    align-self: center;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(20, 25, 35, .16), 0 1px 2px rgba(20, 25, 35, .08);
}

.auth-mark:focus-visible[b-k1g0r10bfx] { outline: 2px solid var(--brand-red); outline-offset: 4px; }

.auth-mark img[b-k1g0r10bfx] {
    display: block;
    width: 52px;
    height: auto;
}

.auth-content[b-k1g0r10bfx] {
    display: flex;
    width: min(100%, 390px);
    flex: 1;
    align-items: center;
    margin-inline: auto;
    padding: 28px 0;
}

.auth-footer[b-k1g0r10bfx] {
    margin: 0;
    color: var(--ink-faint);
    font-size: 12px;
    text-align: center;
}

/* ── Product highlights ───────────────────────────────────────────────────────
   Five slides share one 40s clock (8s each). Slide n starts n steps late and fades in/out inside its own 20% window,
   so it crossfades with its neighbours. The 20%/22.5% keyframe stops below assume FIVE slides — change them together
   with the Slides list in AuthLayout.razor. */
.auth-hero[b-k1g0r10bfx] {
    --step: 8s;
    --slides: 5;
    --gutter: clamp(28px, 4.4vw, 64px);
    /* Pinned to the viewport: when the form is taller than the screen (Register, short laptops) the page scrolls
       and the slideshow stays in view instead of stretching down the page. */
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(12, 23, 26, .32), rgba(12, 23, 26, .02) 50%),
        url("/brand/auth/lagoon-hero.webp") center center / cover no-repeat;
}

.auth-hero[b-k1g0r10bfx]::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(8, 28, 31, .66), rgba(8, 28, 31, .30) 55%, rgba(8, 28, 31, .42));
    pointer-events: none;
}

.auth-slides[b-k1g0r10bfx] {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.auth-slide[b-k1g0r10bfx] {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    animation: auth-slide-b-k1g0r10bfx calc(var(--slides) * var(--step)) linear infinite both;
    animation-delay: calc(var(--i) * var(--step));
}

@keyframes auth-slide-b-k1g0r10bfx {
    0% { opacity: 0; }
    2.5% { opacity: 1; }
    20% { opacity: 1; }
    22.5% { opacity: 0; }
    100% { opacity: 0; }
}

.auth-slide-text[b-k1g0r10bfx] {
    position: absolute;
    top: 96px;
    left: var(--gutter);
    width: min(560px, calc(100% - 2 * var(--gutter)));
}

.auth-slide-kicker[b-k1g0r10bfx] {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.auth-slide-text h2[b-k1g0r10bfx] {
    font-size: clamp(28px, 2.9vw, 38px);
    line-height: 1.06;
    letter-spacing: -.05em;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .25);
}

.auth-slide-text h2 span[b-k1g0r10bfx] { display: block; }

.auth-slide-text ul[b-k1g0r10bfx] {
    display: grid;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.auth-slide-text li[b-k1g0r10bfx] {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.4;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .3);
}

.auth-slide-text li[b-k1g0r10bfx]::before {
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .5);
    content: "";
}

.auth-slide-text li[b-k1g0r10bfx]::after {
    position: absolute;
    top: 5.5px;
    left: 5.5px;
    width: 4px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(.95);
    content: "";
}

/* The screenshot sits in a floating window, aligned with the text above it. */
.auth-slide-shot[b-k1g0r10bfx] {
    position: absolute;
    left: var(--gutter);
    bottom: clamp(24px, 6vh, 58px);
    width: min(calc(100% - 2 * var(--gutter)), 900px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.auth-slide-shot img[b-k1g0r10bfx] {
    display: block;
    width: 100%;
    height: auto;
}

.auth-slide-bar[b-k1g0r10bfx] {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 22px;
    padding-left: 10px;
    border-bottom: 1px solid #dcdfe3;
    background: #f1f2f4;
}

.auth-slide-bar i[b-k1g0r10bfx] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c9ccd1;
}

/* Progress: one bar per slide, filling over that slide's turn on the shared clock. */
.auth-dots[b-k1g0r10bfx] {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: var(--gutter);
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;
}

.auth-dots i[b-k1g0r10bfx] {
    position: relative;
    width: 30px;
    height: 3px;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(255, 255, 255, .35);
}

.auth-dots i[b-k1g0r10bfx]::after {
    position: absolute;
    inset: 0;
    background: #fff;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    animation: auth-fill-b-k1g0r10bfx calc(var(--slides) * var(--step)) linear infinite both;
    animation-delay: calc(var(--i) * var(--step));
}

@keyframes auth-fill-b-k1g0r10bfx {
    0% { transform: scaleX(0); }
    19.99% { transform: scaleX(1); }
    20%, 100% { transform: scaleX(0); }
}

/* Pause / play — a checkbox in front of a label, so it works with the keyboard and without any script. */
.auth-pause-input[b-k1g0r10bfx] {
    position: absolute;
    z-index: 3;
    top: 34px;
    right: var(--gutter);
    width: 30px;
    height: 30px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.auth-pause[b-k1g0r10bfx] {
    position: absolute;
    z-index: 2;
    top: 34px;
    right: var(--gutter);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(8, 28, 31, .25);
    pointer-events: none;
}

.auth-pause > span[b-k1g0r10bfx] { display: grid; place-items: center; }
.auth-pause svg[b-k1g0r10bfx] { width: 11px; height: 13px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; }
.auth-pause-on[b-k1g0r10bfx] { display: none !important; }
.auth-pause-on svg[b-k1g0r10bfx] { fill: #fff; stroke: none; }
.auth-pause-input:checked + .auth-pause .auth-pause-off[b-k1g0r10bfx] { display: none; }
.auth-pause-input:checked + .auth-pause .auth-pause-on[b-k1g0r10bfx] { display: grid !important; }
.auth-pause-input:focus-visible + .auth-pause[b-k1g0r10bfx] { outline: 2px solid #fff; outline-offset: 3px; }
.auth-pause-input:hover + .auth-pause[b-k1g0r10bfx] { background: rgba(8, 28, 31, .45); }

.auth-pause-input:checked ~ .auth-slides .auth-slide[b-k1g0r10bfx],
.auth-pause-input:checked ~ .auth-dots i[b-k1g0r10bfx]::after { animation-play-state: paused; }

.auth-sr[b-k1g0r10bfx] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* No motion asked for: show the first slide, still, with no controls to operate. */
@media (prefers-reduced-motion: reduce) {
    .auth-slide[b-k1g0r10bfx] { animation: none; }
    .auth-slide:first-child[b-k1g0r10bfx] { opacity: 1; }
    .auth-dots[b-k1g0r10bfx], .auth-pause[b-k1g0r10bfx], .auth-pause-input[b-k1g0r10bfx] { display: none; }
}

/* Short laptop screens: a smaller window keeps it clear of the headline. */
@media (max-height: 720px) {
    .auth-mark[b-k1g0r10bfx] { width: 80px; height: 80px; }
    .auth-mark img[b-k1g0r10bfx] { width: 44px; }
    .auth-slide-text[b-k1g0r10bfx] { top: 84px; }
    .auth-slide-shot[b-k1g0r10bfx] { width: min(calc(100% - 2 * var(--gutter)), 440px); }
}

@media (max-width: 800px) {
    .auth-shell[b-k1g0r10bfx] { display: block; }
    .auth-panel[b-k1g0r10bfx] {
        min-height: 100vh;
        padding: 28px 28px 24px;
    }
    .auth-content[b-k1g0r10bfx] { margin: auto; padding: 24px 0; }
    .auth-hero[b-k1g0r10bfx] { display: none; }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* app shell styling lives in wwwroot/app.css */
/* /Components/Pages/Accounting/SummaryPage.razor.rz.scp.css */
.summary-panes[b-g5xi2wqn5q] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.summary-pane[b-g5xi2wqn5q] { padding: 0; overflow: hidden; }

.summary-pane-head[b-g5xi2wqn5q] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
}

.summary-pane-title[b-g5xi2wqn5q] { font-weight: 700; font-size: 13px; }
.summary-pane-link[b-g5xi2wqn5q] { font-size: 11.5px; font-weight: 600; }

.summary-subhead[b-g5xi2wqn5q] { background: var(--surface-sunk); }

.summary-header[b-g5xi2wqn5q] { background: var(--surface-sunk); }

.summary-amount[b-g5xi2wqn5q] { font-variant-numeric: tabular-nums; }
.summary-amount:hover[b-g5xi2wqn5q] { text-decoration: underline; }

@media (max-width: 1080px) {
    .summary-panes[b-g5xi2wqn5q] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Banking.razor.rz.scp.css */
.bank-balance-link[b-8dyfq74m1d] {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--brand-red);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
}

.bank-balance-link__hint[b-8dyfq74m1d] {
    margin-top: 3px;
    font-size: 10.5px;
    font-weight: 650;
    letter-spacing: .01em;
}

.bank-balance-link:hover[b-8dyfq74m1d],
.bank-balance-link:focus-visible[b-8dyfq74m1d] {
    text-decoration: underline;
}

.bank-balance-link:focus-visible[b-8dyfq74m1d] {
    border-radius: 4px;
    outline: 2px solid color-mix(in srgb, var(--brand-red) 35%, transparent);
    outline-offset: 3px;
}
/* /Components/Pages/ChartOfAccounts.razor.rz.scp.css */
.coa-edit-link[b-d09wm5p6xv] {
    color: inherit;
    text-decoration: none;
}

.coa-edit-link:hover[b-d09wm5p6xv],
.coa-edit-link:focus-visible[b-d09wm5p6xv] {
    color: var(--brand-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.coa-balance-link[b-d09wm5p6xv] {
    color: var(--brand-red);
    font-weight: 650;
    text-decoration: none;
    font-variant-numeric: tabular-nums;
}

.coa-balance-link:hover[b-d09wm5p6xv],
.coa-balance-link:focus-visible[b-d09wm5p6xv] {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.coa-row-action[b-d09wm5p6xv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    color: var(--ink-faint);
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
}

.coa-row-action:hover[b-d09wm5p6xv],
.coa-row-action:focus-visible[b-d09wm5p6xv] {
    color: var(--brand-red);
    background: var(--brand-red-wash);
}
/* /Components/Pages/CoaAccountEditPage.razor.rz.scp.css */
.coa-editor[b-1yr9pr8ggz] {
    width: min(100%, 980px);
    margin: 0 auto;
    padding-bottom: 24px;
}

.coa-page-head[b-1yr9pr8ggz] {
    align-items: flex-end;
}

.coa-back-link[b-1yr9pr8ggz] {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.coa-back-link:hover[b-1yr9pr8ggz],
.coa-back-link:focus-visible[b-1yr9pr8ggz] {
    color: var(--brand-red);
}

.coa-title-row[b-1yr9pr8ggz] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.coa-title-row h1[b-1yr9pr8ggz] {
    margin-right: 3px;
}

.coa-control-callout[b-1yr9pr8ggz] {
    margin: 0 0 14px;
}

.coa-form-stack[b-1yr9pr8ggz] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.coa-section[b-1yr9pr8ggz] {
    padding: 20px 22px 22px;
}

.coa-section-heading[b-1yr9pr8ggz] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line-soft);
}

.coa-section-heading h2[b-1yr9pr8ggz] {
    margin: 0 0 4px;
    font-size: 15px;
}

.coa-section-heading p[b-1yr9pr8ggz] {
    margin: 0;
    color: var(--ink-faint);
    font-size: 12px;
    line-height: 1.45;
}

.coa-identity-grid[b-1yr9pr8ggz],
.coa-two-column[b-1yr9pr8ggz] {
    display: grid;
    grid-template-columns: minmax(160px, 210px) minmax(280px, 1fr);
    gap: 16px;
}

.coa-two-column[b-1yr9pr8ggz] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coa-full-field[b-1yr9pr8ggz] {
    grid-column: 1 / -1;
}

.coa-optional[b-1yr9pr8ggz] {
    color: var(--ink-faint);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.coa-field-help[b-1yr9pr8ggz] {
    color: var(--ink-faint);
    font-size: 11px;
    line-height: 1.35;
}

.coa-role-options[b-1yr9pr8ggz] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.coa-role-option[b-1yr9pr8ggz] {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
}

.coa-role-option:hover:not(.disabled)[b-1yr9pr8ggz] {
    border-color: var(--brand-red);
}

.coa-role-option.selected[b-1yr9pr8ggz] {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 2px var(--brand-red-wash);
}

.coa-role-option.disabled[b-1yr9pr8ggz] {
    cursor: not-allowed;
    opacity: .72;
}

.coa-role-option input[b-1yr9pr8ggz] {
    margin-top: 2px;
    accent-color: var(--brand-red);
}

.coa-role-option span[b-1yr9pr8ggz] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.coa-role-option strong[b-1yr9pr8ggz] {
    font-size: 13px;
}

.coa-role-option small[b-1yr9pr8ggz] {
    color: var(--ink-faint);
    font-size: 11.5px;
    line-height: 1.45;
}

.coa-parent-field[b-1yr9pr8ggz] {
    margin-top: 16px;
    max-width: 620px;
}

.coa-field-disabled[b-1yr9pr8ggz] {
    opacity: .65;
}

.coa-status-heading[b-1yr9pr8ggz] {
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.coa-switch-row[b-1yr9pr8ggz] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
}

.coa-switch-row.disabled[b-1yr9pr8ggz] {
    cursor: not-allowed;
    opacity: .72;
}

.coa-error[b-1yr9pr8ggz] {
    margin: 14px 0 0;
}

.coa-action-bar[b-1yr9pr8ggz] {
    position: sticky;
    z-index: 10;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 66px;
    margin-top: 16px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: 0 -5px 18px rgba(20, 24, 29, .06);
    backdrop-filter: blur(8px);
}

.coa-action-summary[b-1yr9pr8ggz] {
    flex: 1;
    color: var(--ink-faint);
    font-size: 12px;
}

input:disabled[b-1yr9pr8ggz],
select:disabled[b-1yr9pr8ggz],
textarea:disabled[b-1yr9pr8ggz] {
    cursor: not-allowed;
    background: var(--surface-sunk);
    color: var(--ink-faint);
}

@media (max-width: 720px) {
    .coa-editor[b-1yr9pr8ggz] {
        width: 100%;
    }

    .coa-page-head[b-1yr9pr8ggz] {
        align-items: flex-start;
    }

    .coa-identity-grid[b-1yr9pr8ggz],
    .coa-two-column[b-1yr9pr8ggz],
    .coa-role-options[b-1yr9pr8ggz] {
        grid-template-columns: 1fr;
    }

    .coa-full-field[b-1yr9pr8ggz] {
        grid-column: auto;
    }

    .coa-section[b-1yr9pr8ggz] {
        padding: 17px;
    }

    .coa-status-heading[b-1yr9pr8ggz] {
        align-items: flex-start;
        flex-direction: column;
    }

    .coa-action-summary[b-1yr9pr8ggz] {
        display: none;
    }

    .coa-action-bar[b-1yr9pr8ggz] {
        justify-content: flex-end;
    }
}
/* /Components/Pages/Reports/TaxAuditPage.razor.rz.scp.css */
.tax-audit-page-head[b-q7in264rw0] {
    align-items: center;
}

.tax-audit-actions[b-q7in264rw0] {
    flex: none;
}

.tax-audit-toolbar[b-q7in264rw0] {
    display: grid;
    grid-template-columns: minmax(170px, 210px) minmax(220px, 1fr) minmax(180px, 220px) minmax(120px, auto);
    gap: 16px;
    align-items: end;
    padding: 14px 16px;
    margin-bottom: 14px;
}

.tax-audit-control[b-q7in264rw0],
.tax-audit-period[b-q7in264rw0],
.tax-audit-basis[b-q7in264rw0] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
}

.tax-audit-control .field-label[b-q7in264rw0],
.tax-audit-period .field-label[b-q7in264rw0],
.tax-audit-basis .field-label[b-q7in264rw0] {
    margin: 0;
}

.tax-audit-control .field-input[b-q7in264rw0] {
    width: 100%;
    height: var(--control-height);
    padding: 0 10px;
}

.tax-audit-period strong[b-q7in264rw0],
.tax-audit-basis strong[b-q7in264rw0] {
    min-height: var(--control-height);
    display: flex;
    align-items: center;
    font-size: 12.5px;
    line-height: 1.35;
}

.tax-audit-basis strong[b-q7in264rw0] {
    width: fit-content;
    min-height: 26px;
    margin-bottom: 3px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--surface-sunk);
    color: var(--ink-soft);
    font-size: 11.5px;
}

.tax-audit-group[b-q7in264rw0] {
    margin-bottom: 14px;
}

.tax-audit-group-head[b-q7in264rw0],
.tax-audit-tie-head[b-q7in264rw0] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.tax-audit-group-head h2[b-q7in264rw0],
.tax-audit-tie-head h2[b-q7in264rw0],
.tax-audit-net h2[b-q7in264rw0] {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
}

.tax-audit-group-head p[b-q7in264rw0],
.tax-audit-tie-head p[b-q7in264rw0],
.tax-audit-net p[b-q7in264rw0] {
    margin: 3px 0 0;
    color: var(--ink-faint);
    font-size: 11.5px;
    line-height: 1.45;
}

.tax-audit-group-metrics[b-q7in264rw0] {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
    min-height: 24px;
}

.tax-audit-group-metrics span[b-q7in264rw0] {
    color: var(--ink-faint);
    font-size: 11.5px;
}

.tax-audit-group-metrics strong[b-q7in264rw0] {
    font-size: 13px;
    white-space: nowrap;
}

.tax-audit-group-empty[b-q7in264rw0] {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 20px 16px;
}

.tax-audit-empty-mark[b-q7in264rw0] {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--surface-sunk);
    color: var(--ink-faint);
    font-size: 12px;
    font-weight: 800;
}

.tax-audit-group-empty div[b-q7in264rw0] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.tax-audit-group-empty strong[b-q7in264rw0] {
    font-size: 12.5px;
}

.tax-audit-group-empty div > span[b-q7in264rw0] {
    color: var(--ink-faint);
    font-size: 11.5px;
}

.tax-audit-table-scroll[b-q7in264rw0] {
    width: 100%;
    overflow-x: auto;
}

.tax-audit-table-scroll:focus-visible[b-q7in264rw0] {
    outline: 3px solid var(--brand-red-wash);
    outline-offset: -3px;
}

.tax-audit-grid[b-q7in264rw0] {
    min-width: 980px;
}

.tax-audit-total-label[b-q7in264rw0] {
    grid-column: 1 / 7;
}

.tax-audit-total-net[b-q7in264rw0] {
    grid-column: 7;
}

.tax-audit-total-vat[b-q7in264rw0] {
    grid-column: 8;
}

.tax-audit-total-running[b-q7in264rw0] {
    grid-column: 9;
}

.tax-audit-code-summary[b-q7in264rw0] {
    border-top: 1px solid var(--line);
}

.tax-audit-code-summary > summary[b-q7in264rw0] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--surface-sunk);
    cursor: pointer;
    list-style: none;
    font-size: 12px;
    font-weight: 650;
}

.tax-audit-code-summary > summary[b-q7in264rw0]::-webkit-details-marker {
    display: none;
}

.tax-audit-code-summary > summary[b-q7in264rw0]::before {
    color: var(--ink-faint);
    content: "▸";
}

.tax-audit-code-summary[open] > summary[b-q7in264rw0]::before {
    content: "▾";
}

.tax-audit-code-summary > summary .faint[b-q7in264rw0] {
    margin-left: auto;
    font-weight: 500;
}

.tax-audit-code-row[b-q7in264rw0] {
    grid-template-columns: minmax(120px, 1fr) minmax(90px, 1fr) 150px 150px;
}

.tax-audit-net[b-q7in264rw0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    margin-bottom: 14px;
    border-left: 3px solid var(--brand-red);
}

.tax-audit-kicker[b-q7in264rw0] {
    display: block;
    margin-bottom: 3px;
    color: var(--brand-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tax-audit-net-value[b-q7in264rw0] {
    flex: none;
    font-size: 22px;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.tax-audit-tie[b-q7in264rw0] {
    margin-bottom: 14px;
}

.tax-audit-tie-head[b-q7in264rw0] {
    align-items: center;
}

.tax-audit-recon[b-q7in264rw0] {
    min-width: 700px;
}

.tax-audit-recon th[b-q7in264rw0] {
    padding: 9px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-faint);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .03em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.tax-audit-recon th:nth-child(n + 2):nth-child(-n + 4)[b-q7in264rw0] {
    text-align: right;
}

.tax-audit-tie-note[b-q7in264rw0] {
    margin: 0;
    padding: 12px 16px;
    border-top: 1px solid var(--line-soft);
    color: var(--ink-soft);
    font-size: 11.5px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .tax-audit-toolbar[b-q7in264rw0] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tax-audit-page-head[b-q7in264rw0],
    .tax-audit-group-head[b-q7in264rw0],
    .tax-audit-tie-head[b-q7in264rw0],
    .tax-audit-net[b-q7in264rw0] {
        align-items: stretch;
        flex-direction: column;
    }

    .tax-audit-actions[b-q7in264rw0] {
        align-items: stretch;
    }

    .tax-audit-actions .btn[b-q7in264rw0] {
        justify-content: center;
    }

    .tax-audit-toolbar[b-q7in264rw0] {
        grid-template-columns: 1fr;
    }

    .tax-audit-group-metrics[b-q7in264rw0] {
        justify-content: space-between;
    }

    .tax-audit-net-value[b-q7in264rw0] {
        align-self: flex-start;
    }

    .tax-audit-code-row[b-q7in264rw0] {
        grid-template-columns: minmax(90px, 1fr) 70px 110px 110px;
        min-width: 480px;
    }
}
/* /Components/Pages/Reports/VatPayeReturnPage.razor.rz.scp.css */
.rm205-sheet[b-va890s7n1m] {
    max-width: 1060px;
    margin-inline: auto;
    overflow: hidden;
    color: var(--ink);
    background: var(--surface);
}

.rm205-ministry-head[b-va890s7n1m],
.rm205-title-row[b-va890s7n1m] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.rm205-ministry-head[b-va890s7n1m] {
    padding: 18px 20px 14px;
    border-bottom: 3px solid var(--ink);
}

.rm205-ministry-head div[b-va890s7n1m] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rm205-ministry-head strong[b-va890s7n1m] {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: .01em;
}

.rm205-ministry-head span[b-va890s7n1m] {
    font-size: 11.5px;
}

.rm205-ministry-head b[b-va890s7n1m] {
    font-size: 16px;
}

.rm205-title-row[b-va890s7n1m] {
    padding: 10px 20px;
    border-bottom: 2px solid var(--ink);
}

.rm205-title-row h2[b-va890s7n1m] {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    letter-spacing: .02em;
}

.rm205-title-row strong[b-va890s7n1m] {
    font-size: 13px;
}

.rm205-identity[b-va890s7n1m] {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 24px;
    padding: 14px 20px;
    border-bottom: 3px solid var(--ink);
}

.rm205-identity-business[b-va890s7n1m] {
    display: grid;
    gap: 10px;
}

.rm205-identity-business > div[b-va890s7n1m] {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: start;
    min-height: 34px;
}

.rm205-identity-business > .rm205-address-line[b-va890s7n1m] {
    grid-template-columns: 70px 32px 1fr;
}

.rm205-address-line strong[b-va890s7n1m] {
    border-left: 0;
}

.rm205-identity-business span[b-va890s7n1m],
.rm205-sheet[b-va890s7n1m]  .rm205-meta-label {
    padding-top: 8px;
    font-size: 12px;
    font-weight: 700;
}

.rm205-identity-business strong[b-va890s7n1m],
.rm205-sheet[b-va890s7n1m]  .rm205-meta-value {
    min-height: 34px;
    padding: 7px 9px;
    border: 1px solid var(--ink);
    font-size: 12px;
    line-height: 1.45;
}

.rm205-identity-fields[b-va890s7n1m] {
    display: grid;
    align-content: start;
}

.rm205-identity-fields[b-va890s7n1m]  .rm205-identity-line {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) 32px minmax(140px, 1.2fr);
    align-items: stretch;
}

.rm205-identity-fields[b-va890s7n1m]  .rm205-identity-line:has(.rm205-meta-label + .rm205-meta-value) {
    grid-template-columns: minmax(132px, 1fr) minmax(140px, 1.2fr);
}

.rm205-sheet[b-va890s7n1m]  .rm205-meta-label {
    padding-right: 8px;
}

.rm205-sheet[b-va890s7n1m]  .rm205-box-no {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border: 1px solid var(--ink);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.rm205-sheet[b-va890s7n1m]  .rm205-box-no-empty {
    border-color: transparent;
}

.rm205-sheet[b-va890s7n1m]  .rm205-meta-value {
    display: flex;
    align-items: center;
    border-left: 0;
    font-weight: 600;
}

.rm205-section[b-va890s7n1m] {
    display: grid;
    grid-template-columns: 175px minmax(0, 1fr);
    border-bottom: 3px solid var(--ink);
}

.rm205-section-title[b-va890s7n1m] {
    padding: 14px 14px 16px 20px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.rm205-lines[b-va890s7n1m] {
    min-width: 0;
}

.rm205-lines[b-va890s7n1m]  .rm205-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px 170px;
    align-items: stretch;
    min-height: 38px;
}

.rm205-lines[b-va890s7n1m]  .rm205-line-label {
    align-self: center;
    padding: 7px 12px;
    font-size: 12.5px;
    line-height: 1.35;
}

.rm205-lines[b-va890s7n1m]  .rm205-line .rm205-box-no {
    min-height: 38px;
}

.rm205-lines[b-va890s7n1m]  .rm205-amount {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    padding: 7px 10px;
    border-top: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.rm205-lines[b-va890s7n1m]  .rm205-line:last-child .rm205-amount {
    border-bottom: 1px solid var(--ink);
}

.rm205-lines[b-va890s7n1m]  .rm205-emphasis .rm205-line-label,
.rm205-lines[b-va890s7n1m]  .rm205-emphasis .rm205-amount {
    font-weight: 800;
    background: var(--surface-sunk);
}

.rm205-lines[b-va890s7n1m]  .rm205-edit-line .rm205-line-label,
.rm205-lines[b-va890s7n1m]  .rm205-edit-line .rm205-amount {
    background: var(--brand-red-wash);
}

.rm205-lines[b-va890s7n1m]  .rm205-edit-amount {
    padding: 3px 5px;
}

.rm205-lines[b-va890s7n1m]  .rm205-number-input {
    width: 100%;
    height: var(--control-height-sm);
    padding: 3px 7px;
    border-color: var(--line-strong);   /* amount fields you type into keep a visible border, even on the tinted edit rows */
    background: var(--surface);
    text-align: right;
}

.rm205-vat-result[b-va890s7n1m] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 10px 20px;
    border-bottom: 3px solid var(--ink);
    font-size: 13px;
}

.rm205-vat-result span[b-va890s7n1m] {
    min-width: 170px;
    font-size: 15px;
    font-weight: 800;
    text-align: right;
}

.rm205-paye-title[b-va890s7n1m] {
    padding-block: 9px;
}

.rm205-paye-section[b-va890s7n1m] {
    grid-template-columns: minmax(175px, 1fr) minmax(460px, 1.25fr);
}

.rm205-lines[b-va890s7n1m]  .rm205-meta-line .rm205-line-label {
    font-weight: 650;
}

.rm205-declaration[b-va890s7n1m] {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) minmax(220px, .65fr);
    gap: 14px;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 3px solid var(--ink);
    font-size: 12.5px;
}

.rm205-declaration > span[b-va890s7n1m] {
    font-style: italic;
    font-weight: 650;
}

.rm205-signature-line[b-va890s7n1m] {
    padding: 18px 4px 3px;
    border-bottom: 1px solid var(--ink);
    color: var(--ink-faint);
    font-size: 10.5px;
    text-align: center;
}

.rm205-payment[b-va890s7n1m] {
    display: grid;
    grid-template-columns: minmax(230px, .75fr) minmax(460px, 1.25fr);
    gap: 24px;
    padding: 16px 20px 20px;
}

.rm205-payment > div:first-child[b-va890s7n1m] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12.5px;
}

.rm205-payment small[b-va890s7n1m] {
    margin-top: 12px;
    color: var(--ink-faint);
    line-height: 1.45;
}

@media (max-width: 900px) {
    .rm205-sheet[b-va890s7n1m] {
        overflow-x: auto;
    }

    .rm205-ministry-head[b-va890s7n1m],
    .rm205-title-row[b-va890s7n1m],
    .rm205-identity[b-va890s7n1m],
    .rm205-section[b-va890s7n1m],
    .rm205-vat-result[b-va890s7n1m],
    .rm205-declaration[b-va890s7n1m],
    .rm205-payment[b-va890s7n1m] {
        min-width: 760px;
    }
}
