/* /Components/Dashboard/DynamicDashboard.razor.rz.scp.css */
.dashboard-workbench[b-rgmnhsy2tc] {
    background:
        linear-gradient(var(--nf-paper), var(--nf-paper)) padding-box,
        linear-gradient(135deg, var(--nf-action-soft), var(--nf-line)) border-box;
    border: 1px solid transparent;
    border-radius: var(--nf-radius);
    display: grid;
    gap: 1rem;
    min-width: 0;
    padding: 1rem;
}

.dashboard-workbench__header[b-rgmnhsy2tc] {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.dashboard-workbench__header h2[b-rgmnhsy2tc],
.dashboard-workbench__catalog h3[b-rgmnhsy2tc],
.dashboard-workbench__empty h3[b-rgmnhsy2tc] {
    margin: 0;
}

.dashboard-workbench__header p[b-rgmnhsy2tc],
.dashboard-workbench__catalog p[b-rgmnhsy2tc],
.dashboard-workbench__empty p[b-rgmnhsy2tc] {
    color: var(--nf-muted);
    margin: .35rem 0 0;
}

.dashboard-workbench__eyebrow[b-rgmnhsy2tc] {
    color: var(--nf-action);
    display: block;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .11em;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

.dashboard-workbench__status[b-rgmnhsy2tc] {
    align-items: center;
    background: var(--nf-surface);
    border: 1px solid var(--nf-line);
    border-radius: 999px;
    color: var(--nf-muted);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .75rem;
    gap: .35rem;
    min-height: 2.75rem;
    padding: .45rem .7rem;
}

.dashboard-workbench__status.is-saving[b-rgmnhsy2tc],
.dashboard-workbench__status.is-saved[b-rgmnhsy2tc] {
    border-color: var(--nf-action-line);
    color: var(--nf-action);
}

.dashboard-workbench__status.is-error[b-rgmnhsy2tc] {
    border-color: var(--nf-err);
    color: var(--nf-err);
}

[data-modo="escuro"] .dashboard-workbench__status.is-error[b-rgmnhsy2tc] {
    background: color-mix(in srgb, var(--nf-err) 18%, transparent);
    border-color: color-mix(in srgb, var(--nf-err) 42%, white);
    color: color-mix(in srgb, var(--nf-err) 35%, white);
}

.dashboard-workbench__catalog[b-rgmnhsy2tc] {
    align-items: center;
    background: var(--nf-surface);
    border: 1px solid var(--nf-line);
    border-left: .3rem solid var(--nf-action-line);
    border-radius: var(--nf-radius-sm);
    display: grid;
    gap: .75rem 1rem;
    grid-template-columns: minmax(12rem, .7fr) minmax(0, 1.3fr);
    padding: .85rem 1rem;
}

.dashboard-workbench__catalog-actions[b-rgmnhsy2tc] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-end;
}

.dashboard-workbench__catalog-actions button[b-rgmnhsy2tc] {
    align-items: center;
    background: var(--nf-action-soft);
    border: 1px solid var(--nf-action-line);
    border-radius: 999px;
    color: var(--nf-ink);
    cursor: pointer;
    display: inline-flex;
    gap: .35rem;
    min-height: 2.75rem;
    padding: .45rem .75rem;
}

.dashboard-workbench__catalog-actions button:focus-visible[b-rgmnhsy2tc] {
    outline: 3px solid var(--nf-focus);
    outline-offset: 2px;
}

.dashboard-workbench__catalog-actions button:hover:not(:disabled)[b-rgmnhsy2tc] {
    background: var(--nf-surface);
    border-color: var(--nf-action);
}

.dashboard-workbench__catalog-actions button:active:not(:disabled)[b-rgmnhsy2tc] {
    background: var(--nf-action-soft);
    box-shadow: inset 0 0 0 1px var(--nf-action);
}

.dashboard-workbench__catalog-actions button:disabled[b-rgmnhsy2tc] {
    cursor: not-allowed;
    opacity: .55;
}

.dashboard-workbench__grid[b-rgmnhsy2tc] {
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent calc(8.333333% - 1px),
        color-mix(in srgb, var(--nf-line) 38%, transparent) calc(8.333333% - 1px),
        color-mix(in srgb, var(--nf-line) 38%, transparent) 8.333333%);
    border-radius: var(--nf-radius-sm);
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    min-width: 0;
    padding: .25rem;
}

.dashboard-workbench__slot[b-rgmnhsy2tc] {
    grid-column: span var(--dashboard-small);
    min-width: 0;
}

.dashboard-workbench__drop-end[b-rgmnhsy2tc] {
    align-items: center;
    border: 1px dashed transparent;
    border-radius: var(--nf-radius-sm);
    color: var(--nf-muted);
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 2.75rem;
    opacity: 0;
    padding: .35rem;
}

.dashboard-workbench.is-dragging-active .dashboard-workbench__drop-end[b-rgmnhsy2tc] {
    border-color: var(--nf-line);
    opacity: 1;
}

.dashboard-workbench__drop-end.is-drop-after[b-rgmnhsy2tc] {
    background: var(--nf-action-soft);
    border-color: var(--nf-action);
    color: var(--nf-action);
}

.dashboard-workbench__empty[b-rgmnhsy2tc] {
    align-items: center;
    border: 1px dashed var(--nf-line);
    border-radius: var(--nf-radius-sm);
    display: flex;
    flex-direction: column;
    min-height: 12rem;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.dashboard-workbench__empty > .nf-icon[b-rgmnhsy2tc] {
    color: var(--nf-action);
    font-size: 2rem;
    margin-bottom: .5rem;
}

@media (min-width: 48rem) {
    .dashboard-workbench__slot[b-rgmnhsy2tc] {
        grid-column: span var(--dashboard-medium);
    }
}

@media (min-width: 75rem) {
    .dashboard-workbench__slot[b-rgmnhsy2tc] {
        grid-column: span var(--dashboard-large);
    }
}

@media (max-width: 47.99rem) {
    .dashboard-workbench__header[b-rgmnhsy2tc] {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-workbench__status[b-rgmnhsy2tc] {
        align-self: flex-start;
    }

    .dashboard-workbench__catalog[b-rgmnhsy2tc] {
        grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-workbench__catalog-actions[b-rgmnhsy2tc] {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-workbench *[b-rgmnhsy2tc],
    .dashboard-workbench *[b-rgmnhsy2tc]::before,
    .dashboard-workbench *[b-rgmnhsy2tc]::after {
        scroll-behavior: auto !important;
    }
}
/* /Components/Dashboard/WidgetContainer.razor.rz.scp.css */
.dashboard-widget[b-3un7hlf5le] {
    background: var(--nf-surface);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    box-shadow: var(--nf-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 13rem;
    min-width: 0;
    padding: 1rem;
    position: relative;
    transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.dashboard-widget.is-editing[b-3un7hlf5le] {
    border-style: dashed;
    padding-bottom: 2.75rem;
}

.dashboard-widget.is-dragging[b-3un7hlf5le] {
    border-color: var(--nf-action-line);
    box-shadow: var(--nf-shadow);
    opacity: .78;
    transform: scale(.995);
}

.dashboard-widget.is-drop-axis-vertical.is-drop-before[b-3un7hlf5le]::before,
.dashboard-widget.is-drop-axis-vertical.is-drop-after[b-3un7hlf5le]::after {
    background: var(--nf-action);
    border-radius: 999px;
    content: "";
    height: .25rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 2;
}

.dashboard-widget.is-drop-axis-vertical.is-drop-before[b-3un7hlf5le]::before {
    top: -.65rem;
}

.dashboard-widget.is-drop-axis-vertical.is-drop-after[b-3un7hlf5le]::after {
    bottom: -.65rem;
}

.dashboard-widget.is-drop-axis-horizontal.is-drop-before[b-3un7hlf5le]::before,
.dashboard-widget.is-drop-axis-horizontal.is-drop-after[b-3un7hlf5le]::after {
    background: var(--nf-action);
    border-radius: 999px;
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    width: .25rem;
    z-index: 2;
}

.dashboard-widget.is-drop-axis-horizontal.is-drop-before[b-3un7hlf5le]::before {
    left: -.65rem;
}

.dashboard-widget.is-drop-axis-horizontal.is-drop-after[b-3un7hlf5le]::after {
    right: -.65rem;
}

.dashboard-widget.is-resizing[b-3un7hlf5le] {
    border-color: var(--nf-action-line);
}

.dashboard-widget:focus-visible[b-3un7hlf5le] {
    outline: 3px solid var(--nf-focus);
    outline-offset: 3px;
}

.dashboard-widget__header[b-3un7hlf5le] {
    align-items: center;
    display: flex;
    gap: .65rem;
    min-width: 0;
}

.dashboard-widget.is-editing .dashboard-widget__header[b-3un7hlf5le] {
    align-items: flex-start;
    flex-wrap: wrap;
}

.dashboard-widget__identity[b-3un7hlf5le] {
    flex: 1 1 auto;
    min-width: 0;
}

.dashboard-widget__identity h2[b-3un7hlf5le] {
    font-size: 1rem;
    margin: 0;
    overflow-wrap: anywhere;
}

.dashboard-widget__eyebrow[b-3un7hlf5le],
.dashboard-widget__size[b-3un7hlf5le] {
    color: var(--nf-muted);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dashboard-widget__mark[b-3un7hlf5le] {
    color: var(--nf-action);
}

.dashboard-widget__toolbar[b-3un7hlf5le] {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: .15rem;
    justify-content: flex-end;
}

.dashboard-widget.is-editing .dashboard-widget__toolbar[b-3un7hlf5le] {
    box-sizing: border-box;
    flex: 1 1 100%;
    justify-content: flex-start;
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.dashboard-widget__toolbar button[b-3un7hlf5le],
.dashboard-widget__gesture[b-3un7hlf5le] {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--nf-radius-xs);
    color: var(--nf-ink);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
    padding: .35rem;
}

.dashboard-widget__toolbar button:hover[b-3un7hlf5le],
.dashboard-widget__gesture:hover[b-3un7hlf5le] {
    background: var(--nf-action-soft);
    border-color: var(--nf-action-line);
}

.dashboard-widget__toolbar button:focus-visible[b-3un7hlf5le],
.dashboard-widget__gesture:focus-visible[b-3un7hlf5le] {
    outline: 3px solid var(--nf-focus);
    outline-offset: 2px;
}

.dashboard-widget__toolbar button:disabled[b-3un7hlf5le],
.dashboard-widget__gesture[data-dashboard-disabled="true"][b-3un7hlf5le] {
    cursor: not-allowed;
    opacity: .55;
}

.dashboard-widget__drag[b-3un7hlf5le] {
    cursor: grab;
    flex: 0 0 auto;
    touch-action: none;
}

.dashboard-widget__drag:active[b-3un7hlf5le] {
    cursor: grabbing;
}

.dashboard-widget__instructions[b-3un7hlf5le] {
    color: var(--nf-muted);
    font-size: .75rem;
    margin: .5rem 0 0;
}

.dashboard-widget__size[b-3un7hlf5le] {
    margin-top: .35rem;
}

.dashboard-widget__content[b-3un7hlf5le] {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding-top: .75rem;
}

.dashboard-widget__resize[b-3un7hlf5le] {
    bottom: .25rem;
    cursor: ew-resize;
    position: absolute;
    right: .25rem;
    touch-action: none;
}

@media (max-width: 47.99rem) {
    .dashboard-widget__header[b-3un7hlf5le] {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .dashboard-widget__toolbar[b-3un7hlf5le] {
        flex-basis: 100%;
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-widget[b-3un7hlf5le] {
        transition: none;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-widget-content[b-rhlyvkk13a] {
    flex: 1 1 auto;
    min-width: 0;
}

.home-widget-content ul[b-rhlyvkk13a] {
    display: grid;
    gap: .5rem;
    margin: 0;
}

.home-widget-content li[b-rhlyvkk13a] {
    border-bottom: 1px solid var(--nf-line);
    padding-bottom: .5rem;
}

.home-widget-content li:last-child[b-rhlyvkk13a] {
    border-bottom: 0;
}

.home-widget-content p[b-rhlyvkk13a] {
    margin-bottom: .15rem;
}

.home-widget-open[b-rhlyvkk13a] {
    border-top: 1px solid var(--nf-line);
    margin-top: .75rem;
    padding-top: .65rem;
}

.home-widget-open a[b-rhlyvkk13a] {
    align-items: center;
    color: var(--nf-action);
    display: inline-flex;
    font-weight: 700;
    gap: .35rem;
    min-height: 2.75rem;
}

.home-widget-open a:focus-visible[b-rhlyvkk13a] {
    outline: 3px solid var(--nf-focus);
    outline-offset: 2px;
}
/* /Components/Registral/RegistralDocumentViewer.razor.rz.scp.css */
.registral-document-viewer[b-nibyl3srwb] { min-height: 28rem; }
.registral-document-viewer iframe[b-nibyl3srwb] { width: 100%; min-height: 70vh; border: 0; }
.registral-page-surface[b-nibyl3srwb] {
    min-height: min(70vh, 52rem);
    overflow: auto;
    overscroll-behavior: contain;
    padding: 1rem;
}
.registral-transform-stage[b-nibyl3srwb] {
    display: inline-block;
    min-width: 100%;
    min-height: min(70vh, 52rem);
    transform-origin: top left;
}
.registral-page-image[b-nibyl3srwb] {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transform-origin: top left;
}
/* /Components/Registral/Ri/RiWorkspaceEditor.razor.rz.scp.css */
.ri-workspace-editor[b-lrp2p48c3j] {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.ri-workspace-editor__header[b-lrp2p48c3j],
.ri-workspace-editor__meta[b-lrp2p48c3j],
.ri-workspace-editor__official[b-lrp2p48c3j],
.ri-workspace-editor__footer[b-lrp2p48c3j] {
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    box-shadow: var(--nf-shadow);
}

.ri-workspace-editor__header[b-lrp2p48c3j] {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
}

.ri-workspace-editor__header h2[b-lrp2p48c3j],
.ri-workspace-editor__official h2[b-lrp2p48c3j],
.ri-workspace-editor__section-heading h2[b-lrp2p48c3j],
.ri-workspace-editor__line h3[b-lrp2p48c3j] {
    margin: 0;
}

.ri-workspace-editor__eyebrow[b-lrp2p48c3j] {
    color: var(--nf-action);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 .25rem;
    text-transform: uppercase;
}

.ri-workspace-editor__number[b-lrp2p48c3j] {
    color: var(--nf-muted);
    font-family: var(--nf-font-mono);
    margin: .4rem 0 0;
    overflow-wrap: anywhere;
}

.ri-workspace-editor__header-actions[b-lrp2p48c3j],
.ri-workspace-editor__footer-actions[b-lrp2p48c3j],
.ri-workspace-editor__official-controls > div[b-lrp2p48c3j],
.ri-workspace-editor__fallback-actions[b-lrp2p48c3j] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.ri-workspace-editor__back[b-lrp2p48c3j],
.ri-workspace-editor__fallback-actions a[b-lrp2p48c3j] {
    align-items: center;
    color: var(--nf-action);
    display: inline-flex;
    font-weight: 700;
    min-height: 2.75rem;
}

.ri-workspace-editor__notice[b-lrp2p48c3j] {
    background: var(--nf-action-soft);
    border-left: .25rem solid var(--nf-action-line);
    color: var(--nf-ink);
    display: grid;
    gap: .2rem;
    padding: .9rem 1rem;
}

.ri-workspace-editor__meta[b-lrp2p48c3j] {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.ri-workspace-editor__meta-field[b-lrp2p48c3j],
.ri-workspace-editor__official-controls[b-lrp2p48c3j] {
    display: grid;
    gap: .4rem;
    min-width: min(100%, 20rem);
}

.ri-workspace-editor__meta-summary[b-lrp2p48c3j] {
    color: var(--nf-muted);
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1rem;
}

.ri-workspace-editor__official[b-lrp2p48c3j] {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, .8fr);
    padding: 1rem;
}

.ri-workspace-editor__official h2[b-lrp2p48c3j] {
    font-size: 1rem;
}

.ri-workspace-editor__official p[b-lrp2p48c3j] {
    color: var(--nf-muted);
    margin: .35rem 0 0;
}

.ri-workspace-editor__official code[b-lrp2p48c3j] {
    overflow-wrap: anywhere;
}

.ri-workspace-editor__body[b-lrp2p48c3j] {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(13rem, 17rem) minmax(0, 1fr);
    min-width: 0;
}

.ri-workspace-editor__sections[b-lrp2p48c3j] {
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    display: grid;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    padding: .45rem;
    position: sticky;
    top: 1rem;
}

.ri-workspace-editor__sections button[b-lrp2p48c3j] {
    background: transparent;
    border: 0;
    border-left: .2rem solid transparent;
    color: var(--nf-ink);
    cursor: pointer;
    display: grid;
    gap: .15rem;
    min-height: 3.25rem;
    padding: .55rem .65rem;
    text-align: left;
}

.ri-workspace-editor__sections button:hover[b-lrp2p48c3j] {
    background: var(--nf-action-soft);
}

.ri-workspace-editor__sections button.is-active[b-lrp2p48c3j] {
    background: var(--nf-action-soft);
    border-left-color: var(--nf-action-line);
    color: var(--nf-action);
    font-weight: 700;
}

.ri-workspace-editor__sections small[b-lrp2p48c3j] {
    color: var(--nf-muted);
    font-weight: 400;
}

.ri-workspace-editor__form[b-lrp2p48c3j] {
    background: var(--nf-surface);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    display: grid;
    gap: .85rem;
    min-width: 0;
    padding: 1rem;
}

.ri-workspace-editor__section-heading[b-lrp2p48c3j],
.ri-workspace-editor__line > header[b-lrp2p48c3j] {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.ri-workspace-editor__section-heading p[b-lrp2p48c3j] {
    color: var(--nf-muted);
    font-size: .75rem;
    margin: 0 0 .15rem;
    text-transform: uppercase;
}

.ri-workspace-editor__line[b-lrp2p48c3j] {
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius-sm);
    display: grid;
    gap: .8rem;
    min-width: 0;
    padding: .9rem;
}

.ri-workspace-editor__line h3[b-lrp2p48c3j] {
    font-size: .9rem;
}

.ri-workspace-editor__fields[b-lrp2p48c3j] {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
}

.ri-workspace-editor__field[b-lrp2p48c3j] {
    display: grid;
    gap: .35rem;
    min-width: 0;
}

.ri-workspace-editor__field.is-wide[b-lrp2p48c3j] {
    grid-column: 1 / -1;
}

.ri-workspace-editor__field-error[b-lrp2p48c3j] {
    color: var(--nf-err);
    font-size: .75rem;
    font-weight: 700;
}

.ri-workspace-editor label[b-lrp2p48c3j] {
    color: var(--nf-ink);
    font-size: .8125rem;
    font-weight: 700;
}

.ri-workspace-editor :is(input, select, textarea)[b-lrp2p48c3j] {
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius-sm);
    color: var(--nf-ink);
    font: inherit;
    min-height: 2.75rem;
    min-width: 0;
    padding: .55rem .65rem;
    width: 100%;
}

.ri-workspace-editor textarea[b-lrp2p48c3j] {
    min-height: 6.5rem;
    resize: vertical;
}

.ri-workspace-editor__checkbox[b-lrp2p48c3j] {
    align-items: center;
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius-sm);
    display: flex;
    gap: .6rem;
    min-height: 2.75rem;
    padding: .55rem .65rem;
}

.ri-workspace-editor__checkbox input[b-lrp2p48c3j] {
    min-height: 1.25rem;
    width: 1.25rem;
}

.ri-workspace-editor__empty-section[b-lrp2p48c3j],
.ri-workspace-editor__state[b-lrp2p48c3j] {
    background: var(--nf-paper);
    border: 1px dashed var(--nf-line);
    border-radius: var(--nf-radius);
    color: var(--nf-muted);
    display: grid;
    gap: .6rem;
    justify-items: center;
    margin: 0;
    padding: 1.25rem;
    text-align: center;
}

.ri-workspace-editor__footer[b-lrp2p48c3j] {
    align-items: center;
    bottom: .5rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .85rem 1rem;
    position: sticky;
    z-index: 3;
}

.ri-workspace-editor__footer > div:first-child[b-lrp2p48c3j] {
    display: grid;
    gap: .1rem;
}

.ri-workspace-editor__footer span[b-lrp2p48c3j] {
    color: var(--nf-muted);
    font-size: .8125rem;
}

.ri-workspace-editor :is(input, select, textarea, a, button):focus-visible[b-lrp2p48c3j] {
    outline: 3px solid var(--nf-focus);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .ri-workspace-editor__header[b-lrp2p48c3j],
    .ri-workspace-editor__meta[b-lrp2p48c3j],
    .ri-workspace-editor__footer[b-lrp2p48c3j] {
        align-items: stretch;
        flex-direction: column;
    }

    .ri-workspace-editor__official[b-lrp2p48c3j],
    .ri-workspace-editor__body[b-lrp2p48c3j] {
        grid-template-columns: minmax(0, 1fr);
    }

    .ri-workspace-editor__sections[b-lrp2p48c3j] {
        display: flex;
        max-height: none;
        overflow-x: auto;
        position: static;
        scroll-snap-type: x proximity;
    }

    .ri-workspace-editor__sections button[b-lrp2p48c3j] {
        flex: 0 0 min(75vw, 15rem);
        scroll-snap-align: start;
    }

    .ri-workspace-editor__footer[b-lrp2p48c3j] {
        position: static;
    }
}

@media (max-width: 560px) {
    .ri-workspace-editor__fields[b-lrp2p48c3j] {
        grid-template-columns: minmax(0, 1fr);
    }

    .ri-workspace-editor__field.is-wide[b-lrp2p48c3j] {
        grid-column: auto;
    }

    .ri-workspace-editor__header-actions[b-lrp2p48c3j],
    .ri-workspace-editor__footer-actions[b-lrp2p48c3j],
    .ri-workspace-editor__official-controls > div[b-lrp2p48c3j] {
        align-items: stretch;
        flex-direction: column;
    }

    .ri-workspace-editor__header-actions .dxbl-btn[b-lrp2p48c3j],
    .ri-workspace-editor__footer-actions .dxbl-btn[b-lrp2p48c3j],
    .ri-workspace-editor__official-controls .dxbl-btn[b-lrp2p48c3j] {
        width: 100%;
    }

    .ri-workspace-editor__section-heading[b-lrp2p48c3j],
    .ri-workspace-editor__line > header[b-lrp2p48c3j] {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ri-workspace-editor__sections[b-lrp2p48c3j] {
        scroll-behavior: auto;
    }
}

/* /Components/Registral/Ri/RiWorkspaceList.razor.rz.scp.css */
.ri-workspace-list[b-hc09g7202x] {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.ri-workspace-list__header[b-hc09g7202x] {
    align-items: flex-start;
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    box-shadow: var(--nf-shadow);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.25rem;
}

.ri-workspace-list__header h2[b-hc09g7202x],
.ri-workspace-card h2[b-hc09g7202x],
.ri-workspace-list__empty h2[b-hc09g7202x] {
    margin: 0;
}

.ri-workspace-list__eyebrow[b-hc09g7202x] {
    color: var(--nf-action);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 .25rem;
    text-transform: uppercase;
}

.ri-workspace-list__lead[b-hc09g7202x] {
    color: var(--nf-muted);
    margin: .45rem 0 0;
    max-width: 68ch;
}

.ri-workspace-list__toolbar[b-hc09g7202x] {
    align-items: end;
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    display: grid;
    gap: .5rem 1rem;
    grid-template-columns: minmax(12rem, 1fr) auto;
    padding: 1rem;
}

.ri-workspace-list__toolbar label[b-hc09g7202x] {
    color: var(--nf-muted);
    font-size: .8125rem;
    font-weight: 700;
    grid-column: 1;
}

.ri-workspace-list__toolbar input[b-hc09g7202x] {
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius-sm);
    color: var(--nf-ink);
    grid-column: 1;
    min-height: 2.75rem;
    min-width: 0;
    padding: .6rem .75rem;
}

.ri-workspace-list__toolbar .dxbl-btn[b-hc09g7202x] {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.ri-workspace-list__cards[b-hc09g7202x] {
    display: grid;
    gap: .875rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}

.ri-workspace-card[b-hc09g7202x] {
    background: var(--nf-paper);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    display: grid;
    gap: .8rem;
    min-width: 0;
    padding: 1rem;
}

.ri-workspace-card__topline[b-hc09g7202x] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: space-between;
}

.ri-workspace-card__local[b-hc09g7202x],
.ri-workspace-card__status[b-hc09g7202x] {
    border: 1px solid var(--nf-line);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .55rem;
}

.ri-workspace-card__local[b-hc09g7202x] {
    color: var(--nf-warn);
}

.ri-workspace-card h2[b-hc09g7202x] {
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.ri-workspace-card dl[b-hc09g7202x] {
    display: grid;
    gap: .5rem;
    margin: 0;
}

.ri-workspace-card dl div[b-hc09g7202x] {
    display: flex;
    gap: .75rem;
    justify-content: space-between;
}

.ri-workspace-card dt[b-hc09g7202x] {
    color: var(--nf-muted);
}

.ri-workspace-card dd[b-hc09g7202x] {
    margin: 0;
    text-align: right;
}

.ri-workspace-card__open[b-hc09g7202x] {
    align-items: center;
    color: var(--nf-action);
    display: inline-flex;
    font-weight: 700;
    gap: .4rem;
    justify-self: start;
    min-height: 2.75rem;
}

.ri-workspace-list__state[b-hc09g7202x],
.ri-workspace-list__empty[b-hc09g7202x] {
    background: var(--nf-paper);
    border: 1px dashed var(--nf-line);
    border-radius: var(--nf-radius);
    color: var(--nf-muted);
    margin: 0;
    padding: 1.25rem;
    text-align: center;
}

.ri-workspace-list :is(input, a, button):focus-visible[b-hc09g7202x] {
    outline: 3px solid var(--nf-focus);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .ri-workspace-list__header[b-hc09g7202x] {
        align-items: stretch;
        flex-direction: column;
    }

    .ri-workspace-list__toolbar[b-hc09g7202x] {
        grid-template-columns: minmax(0, 1fr);
    }

    .ri-workspace-list__toolbar .dxbl-btn[b-hc09g7202x] {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
    }

    .ri-workspace-card dl div[b-hc09g7202x] {
        align-items: flex-start;
        flex-direction: column;
        gap: .1rem;
    }

    .ri-workspace-card dd[b-hc09g7202x] {
        text-align: left;
    }
}

