/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* #blazor-error-ui styling lives in wwwroot/css/goldeneye-tokens.css (branded,
   Hungarian) so MainLayout and AuthLayout render the identical banner. */
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-rw88m6nhbk],
.components-reconnect-repeated-attempt-visible[b-rw88m6nhbk],
.components-reconnect-failed-visible[b-rw88m6nhbk],
.components-pause-visible[b-rw88m6nhbk],
.components-resume-failed-visible[b-rw88m6nhbk],
.components-rejoining-animation[b-rw88m6nhbk] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-retrying[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-failed[b-rw88m6nhbk],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-rw88m6nhbk] {
    display: block;
}


#components-reconnect-modal[b-rw88m6nhbk] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-rw88m6nhbk 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-rw88m6nhbk 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-rw88m6nhbk 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-rw88m6nhbk]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-rw88m6nhbk 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-rw88m6nhbk {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-rw88m6nhbk {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-rw88m6nhbk {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-rw88m6nhbk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-rw88m6nhbk] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-rw88m6nhbk] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-rw88m6nhbk] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-rw88m6nhbk] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-rw88m6nhbk] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-rw88m6nhbk] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-rw88m6nhbk 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-rw88m6nhbk] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-rw88m6nhbk {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Account/AccountNotice.razor.rz.scp.css */
/* Muted tile, distinct from the gold .ge-validation-error so a required-action
   message does not read as a failure. */
.notice[b-vz0ygubyet] {
    background-color: var(--muted);
    color: var(--foreground);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius, 0.375rem);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}
/* /Components/Pages/Contract/Calculation.razor.rz.scp.css */
.calculation-card[b-w2vceieani] {
    margin-top: 1rem;
}

.calculation-heading[b-w2vceieani] {
    margin: 1.5rem 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.calculation-table[b-w2vceieani] {
    overflow-x: auto;
}

.calculation-table table[b-w2vceieani] {
    width: 100%;
    border-collapse: collapse;
}

.calculation-table th[b-w2vceieani],
.calculation-table td[b-w2vceieani] {
    padding: 0.375rem 0.75rem;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.calculation-table th[b-w2vceieani] {
    text-align: left;
    font-weight: 600;
}

.calculation-table .numeric[b-w2vceieani] {
    text-align: right;
}
/* /Components/Pages/Contract/NewAdHocContract.razor.rz.scp.css */
.product-table[b-ca9qlyjqtd] {
    margin-bottom: 1rem;
    overflow-x: auto;
}

.product-table table[b-ca9qlyjqtd] {
    width: 100%;
    border-collapse: collapse;
}

.product-table th[b-ca9qlyjqtd],
.product-table td[b-ca9qlyjqtd] {
    padding: 0.375rem 0.5rem;
    border-bottom: 1px solid var(--border);
}

.product-table th[b-ca9qlyjqtd] {
    text-align: left;
    font-weight: 600;
}

.product-table .numeric[b-ca9qlyjqtd] {
    text-align: right;
}

.product-table tbody tr:nth-child(even)[b-ca9qlyjqtd] {
    background: var(--muted);
}

.product-table .grand-total td[b-ca9qlyjqtd] {
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: none;
    background: none;
}


/* The legacy succeeded view printed the contract number at 20px bold. */
.contract-number[b-ca9qlyjqtd] {
    font-weight: 700;
    font-size: 1.25rem;
}
/* /Components/Pages/Documents.razor.rz.scp.css */
.doc-section[b-6dvg8p090l] {
    margin-bottom: 1.5rem;
}

.doc-section-title[b-6dvg8p090l] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.doc-empty[b-6dvg8p090l] {
    color: var(--muted-foreground, #6b7280);
    margin: 0;
}

.doc-list[b-6dvg8p090l] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-width: 40rem;
}

.doc-item[b-6dvg8p090l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.doc-title[b-6dvg8p090l] {
    flex: 1;
}
/* /Components/Pages/Finance/ClientAccounts.razor.rz.scp.css */
/* Legacy editor-label/editor-field block above the injected partial (clear55 rhythm). */

.client-picker[b-td81nqvfvs] {
    margin-bottom: 55px;
    max-width: 450px;
}

.client-picker label[b-td81nqvfvs] {
    display: block;
    margin-bottom: 0.375rem;
}
/* /Components/Pages/Finance/ClientAccountsView.razor.rz.scp.css */
/* Legacy Site.css account-summary block, floats replaced with flex. */

.account-summary[b-aybadfswo4] {
    margin-bottom: 1rem;
}

.account-header[b-aybadfswo4] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: 960px;
    margin-bottom: 10px;
}

.account-title[b-aybadfswo4] {
    font-size: 2em;
}

.account-balance[b-aybadfswo4] {
    text-align: right;
    font-size: 2em;
}

.account-rows-table[b-aybadfswo4] {
    width: 100%;
    max-width: 960px;
    margin-bottom: 40px;
    border-collapse: collapse;
}

.account-row-date[b-aybadfswo4] {
    width: 120px;
    text-align: center;
}

.account-row-contract-number[b-aybadfswo4] {
    width: 100px;
    text-align: center;
}

.account-row-description[b-aybadfswo4] {
    width: 300px;
    padding-left: 20px;
    text-align: left;
}

.account-row-amount[b-aybadfswo4] {
    width: 200px;
    text-align: right;
}

/* Overdue rows and negative balances render in the legacy gold (#f6a924 = --accent). */
.account-due-amount[b-aybadfswo4] {
    color: var(--accent);
}
/* /Components/Pages/Finance/ClientPortfolio.razor.rz.scp.css */
/* Legacy editor-label/editor-field block above the injected partial (clear55 rhythm). */

.client-picker[b-bere71uv25] {
    margin-bottom: 55px;
    max-width: 450px;
}

.client-picker label[b-bere71uv25] {
    display: block;
    margin-bottom: 0.375rem;
}
/* /Components/Pages/Finance/ClientPortfolioView.razor.rz.scp.css */
/* Legacy Site.css .table — the red financial table (migration/04 "Grids & tables"). */

.table[b-defxkeu30g] {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}

.table td[b-defxkeu30g],
.table th[b-defxkeu30g] {
    padding: 8px 6px;
}

.table thead th[b-defxkeu30g],
.table thead td[b-defxkeu30g] {
    background: var(--surface); /* #7f1418 */
    color: #fff;
    font-size: 18px;
    padding: 5px 6px;
}

.table thead th[b-defxkeu30g] {
    text-transform: uppercase;
    font-weight: normal;
    padding-bottom: 0;
}

.table tbody td[b-defxkeu30g] {
    font-size: 14px;
    background: #c70228; /* legacy body-cell red; no dedicated token exists */
}

.table .even td[b-defxkeu30g] {
    background: var(--secondary); /* #B70F1E zebra */
}

.text-center[b-defxkeu30g] {
    text-align: center;
}

.text-right[b-defxkeu30g] {
    text-align: right;
}
/* /Components/Pages/Finance/ImportBankData.razor.rz.scp.css */
.ge-file-input[b-ixrtnrxfq8] {
    display: block;
    width: 100%;
}

.file-chosen[b-ixrtnrxfq8] {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
/* /Components/Pages/Finance/ImportBankDataResult.razor.rz.scp.css */
/* Legacy view used two bare tables with inline column widths; the widths move here. */

.import-summary[b-1xbi833ak5],
.import-rows[b-1xbi833ak5] {
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.import-summary td[b-1xbi833ak5] {
    padding: 0.25rem 1rem 0.25rem 0;
    vertical-align: top;
}

.import-summary td:first-child[b-1xbi833ak5] {
    width: 300px;
}

.import-rows[b-1xbi833ak5] {
    width: 100%;
    max-width: 900px;
}

.import-rows th[b-1xbi833ak5],
.import-rows td[b-1xbi833ak5] {
    padding: 0.375rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.import-rows .row-number[b-1xbi833ak5] {
    width: 50px;
}

.import-rows .row-status[b-1xbi833ak5] {
    width: 180px;
}

.import-rows .row-username[b-1xbi833ak5] {
    width: 120px;
}

.import-rows .row-client[b-1xbi833ak5] {
    width: 250px;
}

.import-rows .row-amount[b-1xbi833ak5] {
    width: 140px;
    text-align: right;
}

.import-rows .row-currency[b-1xbi833ak5] {
    width: 70px;
}

.import-errors[b-1xbi833ak5] {
    margin: 0 0 1.5rem 1.25rem;
}

.import-exception[b-1xbi833ak5] {
    max-width: 900px;
    overflow-x: auto;
    padding: 0.75rem;
    background: var(--muted);
    font-size: 0.8125rem;
}
/* /Components/Pages/Finance/UserCommissions.razor.rz.scp.css */
/* Legacy editor-label/editor-field block above the injected partial (clear55 rhythm). */

.client-picker[b-7dw3rvmdy6] {
    margin-bottom: 55px;
    max-width: 450px;
}

.client-picker label[b-7dw3rvmdy6] {
    display: block;
    margin-bottom: 0.375rem;
}
/* /Components/Pages/Finance/UserCommissionsView.razor.rz.scp.css */
/* Legacy Site.css account-rows-table columns (shared with the accounts screen; CSS
   isolation keeps each component's copy scoped, so the block is duplicated here). */

h6[b-ukpuuwpatd] {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
}

.account-rows-table[b-ukpuuwpatd] {
    width: 100%;
    max-width: 960px;
    margin-bottom: 40px;
    border-collapse: collapse;
}

.account-row-date[b-ukpuuwpatd] {
    width: 120px;
    text-align: center;
}

.account-row-contract-number[b-ukpuuwpatd] {
    width: 100px;
    text-align: center;
}

.account-row-description[b-ukpuuwpatd] {
    width: 300px;
    padding-left: 20px;
    text-align: left;
}

.account-row-amount[b-ukpuuwpatd] {
    width: 200px;
    text-align: right;
}

.clear55[b-ukpuuwpatd] {
    height: 55px;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.ge-dashboard-main[b-htpfdtxmm9] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ---- News ---------------------------------------------------------------- */

.news-item + .news-item[b-htpfdtxmm9] {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.news-date[b-htpfdtxmm9] {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.news-title[b-htpfdtxmm9] {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0.125rem 0 0.375rem;
}

.news-abstract[b-htpfdtxmm9] {
    margin: 0;
    line-height: 1.5;
}

.news-source[b-htpfdtxmm9] {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: underline;
}

/* ---- Notifications and prices -------------------------------------------- */

.notifications-table[b-htpfdtxmm9],
.price-table[b-htpfdtxmm9] {
    width: 100%;
    border-collapse: collapse;
}

.notifications-table th[b-htpfdtxmm9] {
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    padding-bottom: 0.375rem;
    border-bottom: 1px solid var(--border);
}

.notifications-table td[b-htpfdtxmm9],
.price-table td[b-htpfdtxmm9] {
    padding: 0.4375rem 0;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.notifications-table tr:last-child td[b-htpfdtxmm9],
.price-table tr:last-child td[b-htpfdtxmm9] {
    border-bottom: none;
}

/* Keep the timestamp on one line; the message column takes the rest. */
.notification-date[b-htpfdtxmm9] {
    width: 11rem;
    white-space: nowrap;
}

.price-value[b-htpfdtxmm9] {
    text-align: right;
    white-space: nowrap;
}

.empty-note[b-htpfdtxmm9] {
    margin: 0;
    color: var(--muted-foreground);
}
/* /Components/Pages/Maintenance/Administrators.razor.rz.scp.css */
.list-head[b-wrur8tm4v3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.row-actions[b-wrur8tm4v3] {
    display: flex;
    gap: 0.25rem;
}
/* /Components/Pages/Maintenance/News.razor.rz.scp.css */
.list-head[b-0n2mdpqfe5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.row-actions[b-0n2mdpqfe5] {
    display: flex;
    gap: 0.25rem;
}
/* /Components/Pages/Maintenance/Process13Month.razor.rz.scp.css */
.page-intro[b-9is6ydlegn] {
    max-width: 70ch;
    margin: 0 0 1.5rem;
    color: var(--muted-foreground);
}

.job-card[b-9is6ydlegn] {
    margin-bottom: 2rem;
}

.job-description[b-9is6ydlegn] {
    margin: 0 0 1rem;
    max-width: 80ch;
}

.preview-count[b-9is6ydlegn] {
    margin: 0 0 0.75rem;
}

.empty-note[b-9is6ydlegn] {
    margin: 0;
    color: var(--muted-foreground);
}

/* The closing table has six columns and money in three of them; let it scroll rather than
   squeeze the page. */
.table-scroll[b-9is6ydlegn] {
    overflow-x: auto;
}

/* Legacy Site.css .table — the red financial table (migration/04 "Grids & tables"). CSS
   isolation scopes styles per component, so this repeats the block in ClientPortfolioView.razor.css. */

.table[b-9is6ydlegn] {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}

.table td[b-9is6ydlegn],
.table th[b-9is6ydlegn] {
    padding: 8px 6px;
}

.table thead th[b-9is6ydlegn],
.table thead td[b-9is6ydlegn] {
    background: var(--surface); /* #7f1418 */
    color: #fff;
    font-size: 18px;
    padding: 5px 6px;
}

.table thead th[b-9is6ydlegn] {
    text-transform: uppercase;
    font-weight: normal;
    padding-bottom: 0;
}

.table tbody td[b-9is6ydlegn] {
    font-size: 14px;
    background: #c70228; /* legacy body-cell red; no dedicated token exists */
}

.table .even td[b-9is6ydlegn] {
    background: var(--secondary); /* #B70F1E zebra */
}

.text-center[b-9is6ydlegn] {
    text-align: center;
}

.text-right[b-9is6ydlegn] {
    text-align: right;
}

.job-buttons[b-9is6ydlegn] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.running-note[b-9is6ydlegn] {
    margin: 0.75rem 0 0;
    color: var(--muted-foreground);
}

.job-result[b-9is6ydlegn] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.job-result p[b-9is6ydlegn] {
    margin: 0 0 0.5rem;
}

.result-list[b-9is6ydlegn] {
    margin: 0;
    padding-left: 1.25rem;
}

.result-list li[b-9is6ydlegn] {
    margin-bottom: 0.25rem;
}
/* /Components/Pages/Maintenance/Rates.razor.rz.scp.css */
.list-head[b-uav2atr1my] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.row-actions[b-uav2atr1my] {
    display: flex;
    gap: 0.25rem;
}
/* /Components/Pages/Maintenance/RegisterResult.razor.rz.scp.css */
.result-page[b-4hbub2527h] {
    max-width: 480px;
}

.result-page p[b-4hbub2527h] {
    margin: 0 0 1rem;
}

.result-username[b-4hbub2527h] {
    font-weight: 700;
    font-size: 1.25rem;
}
/* /Components/Pages/Users/Activate.razor.rz.scp.css */
.filter-card[b-qg3sn50dd0] {
    margin-bottom: 1.5rem;
}

.filter-form[b-qg3sn50dd0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-form[b-qg3sn50dd0]  input {
    max-width: 16rem;
}

.activation-notice[b-qg3sn50dd0] {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--muted);
}
/* /Components/Pages/Users/ClientDetail.razor.rz.scp.css */
.detail-card[b-9gi19r4jtj] {
    max-width: 40rem;
}

/* Mirrors the legacy .formSectionHeader rhythm. */
.section-header[b-9gi19r4jtj] {
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
}

.section-header:first-child[b-9gi19r4jtj] {
    margin-top: 0;
}

.back-button[b-9gi19r4jtj] {
    margin-top: 1.5rem;
}
/* /Components/Pages/Users/Clients.razor.rz.scp.css */
.row-actions[b-k4k75puyc7] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.row-actions .edit-link[b-k4k75puyc7] {
    display: inline-flex;
    align-items: center;
}

.row-links[b-k4k75puyc7] {
    display: inline-flex;
    gap: 0.75rem;
}

/* Title row with the legacy grid toolbar's add command, as on the Maintenance lists. */
.list-head[b-k4k75puyc7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
/* /Components/Pages/Users/Contracts.razor.rz.scp.css */
.filter-card[b-rhgz68ixnp] {
    margin-bottom: 1.5rem;
}

.filter-form[b-rhgz68ixnp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.client-filter[b-rhgz68ixnp] {
    margin: 0.75rem 0 0;
}

.client-filter a[b-rhgz68ixnp] {
    margin-left: 0.75rem;
}
/* /Components/Pages/Users/Partners.razor.rz.scp.css */
.edit-link[b-l3qwpf9wrs] {
    display: inline-flex;
    align-items: center;
}

/* Legacy Site.css dimmed inactive users' usernames (.inactive-user). */
.inactive-user[b-l3qwpf9wrs] {
    color: var(--muted-foreground);
    text-decoration: line-through;
}

/* Title row with the legacy grid toolbar's add command, as on the Maintenance lists. */
.list-head[b-l3qwpf9wrs] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
/* /Components/Pages/Users/SalesPersons.razor.rz.scp.css */
.edit-link[b-fzaryvyk2e] {
    display: inline-flex;
    align-items: center;
}

/* Legacy Site.css dimmed inactive users' usernames (.inactive-user). */
.inactive-user[b-fzaryvyk2e] {
    color: var(--muted-foreground);
    text-decoration: line-through;
}

/* Title row with the legacy grid toolbar's add command, as on the Maintenance lists. */
.list-head[b-fzaryvyk2e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
/* /Components/Pages/Users/UserRegisterResult.razor.rz.scp.css */
.result-page[b-9ylaq9q3b0] {
    max-width: 480px;
}

.result-page p[b-9ylaq9q3b0] {
    margin: 0 0 1rem;
}

.result-username[b-9ylaq9q3b0] {
    font-weight: 700;
    font-size: 1.25rem;
}
/* /Components/Shared/RichTextInput.razor.rz.scp.css */
.rt-root[b-xodc5cavrl] {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    overflow: hidden;
}

.rt-toolbar[b-xodc5cavrl] {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    padding: 0.25rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--muted);
}

.rt-tool[b-xodc5cavrl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    border-radius: calc(var(--radius) * 0.6);
    background: transparent;
    color: var(--foreground);
    font-size: 0.875rem;
    line-height: 1;
    cursor: pointer;
}

.rt-tool:hover[b-xodc5cavrl] {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.rt-separator[b-xodc5cavrl] {
    width: 1px;
    height: 1.25rem;
    margin: 0 0.25rem;
    background-color: var(--border);
}

.rt-editor[b-xodc5cavrl] {
    min-height: 20rem;
    max-height: 32rem;
    overflow-y: auto;
    padding: 0.625rem 0.75rem;
    outline: none;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Content inside the editor is created by JavaScript, so it carries no scope
   attribute — ::deep moves the attribute onto .rt-editor and lets these match.
   The app's reset flattens headings and lists globally. */
.rt-editor[b-xodc5cavrl]  h1,
.rt-editor[b-xodc5cavrl]  h2,
.rt-editor[b-xodc5cavrl]  h3,
.rt-editor[b-xodc5cavrl]  h4 {
    font-family: var(--font-heading);
    margin: 0.75em 0 0.35em;
    line-height: 1.25;
}

.rt-editor[b-xodc5cavrl]  h1 { font-size: 1.5rem; }
.rt-editor[b-xodc5cavrl]  h2 { font-size: 1.3rem; }
.rt-editor[b-xodc5cavrl]  h3 { font-size: 1.15rem; }
.rt-editor[b-xodc5cavrl]  h4 { font-size: 1rem; }

.rt-editor[b-xodc5cavrl]  p {
    margin: 0 0 0.6em;
}

.rt-editor[b-xodc5cavrl]  ul,
.rt-editor[b-xodc5cavrl]  ol {
    margin: 0 0 0.6em;
    padding-left: 1.75rem;
}

.rt-editor[b-xodc5cavrl]  ol { list-style: decimal; }
.rt-editor[b-xodc5cavrl]  ul { list-style: disc; }

.rt-editor[b-xodc5cavrl]  blockquote {
    margin: 0 0 0.6em 2rem;
}

.rt-editor[b-xodc5cavrl]  a {
    color: var(--accent);
    text-decoration: underline;
}
