/* /Components/Layout/ClientPortalLayout.razor.rz.scp.css */
/* B2B client portal app chrome (prototype #clientSidebarNav + the client viewport). The sidebar is
   REAL app chrome on the left — not inside the page body — so a client (and the staff preview) gets a
   self-contained client application, never the backoffice with an empty staff menu. */
.cportal-app[b-1okcwiv07t] {
    display: flex;
    min-height: 100vh;
    background: var(--mud-palette-background);
}

.cportal-sidebar[b-1okcwiv07t] {
    flex: 0 0 248px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: var(--mud-palette-surface);
    border-right: 1px solid var(--mud-palette-lines-default);
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
}

.cportal-brand[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px 14px;
}

.cportal-brand-mark[b-1okcwiv07t] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--mud-palette-success);
    color: #fff;
    font-weight: 800;
}

.cportal-brand-name[b-1okcwiv07t] {
    font-weight: 800;
    font-size: 1.05rem;
}

.cportal-nav[b-1okcwiv07t] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* Section header — tinted with the section's signature colour (set inline per section). */
.cportal-nav-section[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 12px 12px 4px;
}

.cnav-sec-ic[b-1okcwiv07t] {
    font-size: .9rem;
    line-height: 1;
}

.cportal-nav-divider[b-1okcwiv07t] {
    border-top: 1px solid var(--mud-palette-lines-default);
    margin: 8px 12px;
}

/* A module sub-link: a section-coloured bullet + icon + label, with the cart badge / "soon" chip pushed right. */
.cportal-link[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px 8px 14px;
    border-radius: 8px;
    font-size: .86rem;
    cursor: pointer;
    color: var(--mud-palette-text-primary);
    text-decoration: none;
    user-select: none;
}

.cportal-link:hover[b-1okcwiv07t] {
    background: color-mix(in srgb, var(--cp-accent, var(--mud-palette-success)) 9%, transparent);
}

.cportal-link.active[b-1okcwiv07t] {
    background: color-mix(in srgb, var(--cp-accent, var(--mud-palette-success)) 15%, transparent);
    color: var(--cp-accent, var(--mud-palette-success));
    font-weight: 700;
}

/* Submenu bullet in the section's colour (dim until active/hover, solid when active). */
.cnav-bullet[b-1okcwiv07t] {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cp-accent, var(--mud-palette-success));
    opacity: .45;
}

.cportal-link:hover .cnav-bullet[b-1okcwiv07t],
.cportal-link.active .cnav-bullet[b-1okcwiv07t] {
    opacity: 1;
}

.cnav-ic[b-1okcwiv07t] {
    font-size: 1.02rem;
    line-height: 1;
}

.cnav-label[b-1okcwiv07t] {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Cart count marker (mirrors the prototype header's cart badge) — in the B2B section colour. */
.cnav-badge[b-1okcwiv07t] {
    flex: 0 0 auto;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--cp-accent, var(--mud-palette-success));
    color: #06210f;
    font-size: .68rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

/* "soon" chip on not-yet-built modules. */
.cnav-soon[b-1okcwiv07t] {
    flex: 0 0 auto;
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--mud-palette-text-secondary);
    background: var(--mud-palette-action-default-hover);
    border-radius: 5px;
    padding: 1px 5px;
}

/* Client viewport: a slim header + the section content area. */
.cportal-viewport[b-1okcwiv07t] {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cportal-header[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: var(--mud-palette-surface);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    position: sticky;
    top: 0;
    z-index: 5;
}

/* Staff preview/session client-identity chip (left of the search). */
.cportal-header-context[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

/* Centered global search (prototype #global-search). */
.cportal-search-wrap[b-1okcwiv07t] {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 0;
}

.cportal-search-box[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 460px;
    padding: 7px 12px;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 999px;
    background: var(--mud-palette-background);
}

.cportal-search-box:focus-within[b-1okcwiv07t] {
    border-color: var(--mud-palette-success);
}

.cportal-search-ic[b-1okcwiv07t] {
    font-size: .82rem;
    opacity: .7;
}

.cportal-search-input[b-1okcwiv07t] {
    flex: 1 1 auto;
    border: none;
    outline: none;
    background: transparent;
    color: var(--mud-palette-text-primary);
    font-size: .85rem;
    min-width: 0;
}

.cportal-search-kbd[b-1okcwiv07t] {
    font-family: var(--font-mono, monospace);
    font-size: .62rem;
    color: var(--mud-palette-text-secondary);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    padding: 1px 5px;
}

.cportal-search-results[b-1okcwiv07t] {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 460px;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    padding: 6px;
    z-index: 1300;
}

.cportal-search-item[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.cportal-search-item:hover[b-1okcwiv07t] {
    background: var(--mud-palette-action-default-hover);
}

.cportal-search-item-label[b-1okcwiv07t] {
    flex: 1 1 auto;
    font-size: .85rem;
    font-weight: 600;
}

.cportal-search-item-kind[b-1okcwiv07t] {
    font-size: .68rem;
    color: var(--mud-palette-text-secondary);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cportal-header-actions[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

/* Shared transparent click-away backdrop for the manual dropdowns (search + user-menu). */
.cportal-menu-backdrop[b-1okcwiv07t] {
    position: fixed;
    inset: 0;
    z-index: 1290;
}

/* Client user-menu (prototype renderClientUserMenu / toggleUserMenu): avatar + name + role + caret. */
.cportal-user-wrap[b-1okcwiv07t] {
    position: relative;
}

.cportal-user[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

.cportal-user:hover[b-1okcwiv07t] {
    background: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-success);
}

.cportal-avatar[b-1okcwiv07t] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--mud-palette-success);
    color: #06231f;
    font-size: .74rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.cportal-user-meta[b-1okcwiv07t] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.cportal-user-name[b-1okcwiv07t] {
    font-size: .78rem;
    font-weight: 700;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cportal-user-role[b-1okcwiv07t] {
    font-size: .66rem;
    font-family: var(--font-mono, monospace);
    color: var(--mud-palette-text-secondary);
}

.cportal-user-caret[b-1okcwiv07t] {
    font-size: .7rem;
    opacity: .6;
}

.cportal-user-pop[b-1okcwiv07t] {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 200px;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    padding: 6px;
    z-index: 1300;
}

.cportal-menu-item[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
}

.cportal-menu-item:hover[b-1okcwiv07t] {
    background: var(--mud-palette-action-default-hover);
}

.cportal-menu-item.logout[b-1okcwiv07t] {
    color: var(--mud-palette-error);
}

.cportal-content[b-1okcwiv07t] {
    flex: 1 1 auto;
    min-width: 0;
    padding: 20px 24px;
}

/* Staff read-only client-portal PREVIEW banner (prototype #clientPreviewBanner · lines 1613-1616):
   a full-width bar across the top of the previewed client shell. */
.cportal-preview-banner[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    background: rgba(34, 197, 94, .10);
    border: 1px solid var(--mud-palette-success);
    border-radius: 10px;
    padding: 10px 16px;
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
}

.cportal-preview-banner .cpb-tag[b-1okcwiv07t] {
    color: var(--mud-palette-text-secondary);
    font-family: var(--font-mono, monospace);
    font-size: 11.5px;
    font-weight: 400;
}

.cportal-preview-banner .cpb-sub[b-1okcwiv07t] {
    color: var(--mud-palette-text-secondary);
    font-size: 11px;
    font-weight: 400;
    margin-top: 2px;
}

.cportal-preview-banner .cpb-exit[b-1okcwiv07t] {
    cursor: pointer;
    white-space: nowrap;
    font-weight: 700;
    color: var(--mud-palette-success);
    user-select: none;
}

/* Authorised on-behalf SESSION banner (prototype showImpersonationBanner / directClientSession): a stronger,
   solid green bar — distinct from the muted read-only preview — signalling the portal is WRITABLE. */
.cportal-session-banner[b-1okcwiv07t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    background: rgba(34, 197, 94, .18);
    border: 1px solid var(--mud-palette-success);
    border-radius: 10px;
    padding: 10px 16px;
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
}

.cportal-session-banner .cpb-exit[b-1okcwiv07t] {
    cursor: pointer;
    white-space: nowrap;
    font-weight: 700;
    color: var(--mud-palette-success);
    user-select: none;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* The layout chrome (app bar, drawer, content) is MudLayout / MudAppBar / MudDrawer,
   which theme with MudThemeProvider. The old template rules (.page, main, .sidebar,
   .top-row) are no longer emitted by this component, so they were dead — and their
   hardcoded colors (e.g. the blue→purple .sidebar gradient, #f7f7f7 top-row) ignored
   the theme. Only the Blazor error banner below is still used. */

#blazor-error-ui[b-t91lzwixjr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-t91lzwixjr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Sidebar styling — ported from the prototype's #mainSidebarNav (v2.174.0). Uses the shared design
   tokens already defined in app.css (--zenic-green, --surface-*, --text-*, --border, --font-mono). */

.zenic-sidebar[b-06gizxygol] {
    display: flex;
    flex-direction: column;
    padding-bottom: 16px;
}

/* ── section header (collapsible, with − toggle + attention dot) ── */
.sidebar-section-label[b-06gizxygol] {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    padding: 20px 16px 6px;
    font-weight: 700;
}

.sidebar-section-label.collapsible[b-06gizxygol] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s;
}

.sidebar-section-label.collapsible:hover[b-06gizxygol] {
    color: var(--text-primary);
}

.sidebar-section-label .sec-toggle[b-06gizxygol] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-muted);
    background: var(--surface-3);
    transition: all 0.15s;
    flex-shrink: 0;
}

.sidebar-section-label.collapsible:hover .sec-toggle[b-06gizxygol] {
    color: var(--text-primary);
    background: var(--surface-2);
}

.sidebar-section-label .sec-label-text[b-06gizxygol] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sec-attention-dot[b-06gizxygol] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger-strong);
    box-shadow: 0 0 0 2px var(--surface-1);
    display: none;
    flex-shrink: 0;
}

.sec-attention-dot.show[b-06gizxygol] {
    display: inline-block;
}

/* ── nav item ── */
.nav-link[b-06gizxygol] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    margin: 1px 8px;
    border-radius: 7px;
    border-left: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.nav-link:hover[b-06gizxygol] {
    background: var(--surface-3);
    color: var(--text-primary);
}

.nav-link svg[b-06gizxygol] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* active state (prototype .active-nav) */
.nav-link.active-nav[b-06gizxygol] {
    background: linear-gradient(90deg, var(--zenic-green-dim), transparent);
    color: var(--text-primary);
    font-weight: 700;
    border-left: 3px solid var(--zenic-green);
}

/* ── attention badge (prototype .nav-attention-badge): a red approval count on a nav item
   that needs the viewer's review. Hidden by default; .show reveals it with a subtle pulse. ── */
.nav-attention-badge[b-06gizxygol] {
    margin-left: auto;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--danger-strong);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    font-family: var(--font-mono);
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.nav-attention-badge.show[b-06gizxygol] {
    display: inline-flex;
    animation: attnPulse-b-06gizxygol 1.8s ease-in-out infinite;
}

@keyframes attnPulse-b-06gizxygol {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.nav-caret[b-06gizxygol] {
    margin-left: auto;
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.15s;
}

/* Collapsed group: the caret points right (prototype parity). */
.nav-link.is-collapsed .nav-caret[b-06gizxygol] {
    transform: rotate(-90deg);
}

/* ── submenu ── */
.nav-submenu[b-06gizxygol] {
    display: flex;
    flex-direction: column;
}

.nav-submenu.group-collapsed[b-06gizxygol] {
    display: none !important;
}

.nav-sublink[b-06gizxygol] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 44px;
    font-size: 12.5px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.12s;
    border-left: 2px solid transparent;
    font-weight: 500;
    text-decoration: none;
}

.nav-sublink:hover[b-06gizxygol] {
    color: var(--text-primary);
    background: var(--surface-2);
}

.nav-sublink.active-sub[b-06gizxygol] {
    color: var(--text-primary);
    font-weight: 700;
    border-left-color: var(--zenic-green);
    background: var(--surface-2);
}

.nav-sublink .sub-dot[b-06gizxygol] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    /* --sub-dot-color is set per submenu to the section's signature colour (NavMenu.razor); falls back to text colour. */
    background: var(--sub-dot-color, currentColor);
    opacity: 0.9;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-l6rri1qrza],
.components-reconnect-repeated-attempt-visible[b-l6rri1qrza],
.components-reconnect-failed-visible[b-l6rri1qrza],
.components-pause-visible[b-l6rri1qrza],
.components-resume-failed-visible[b-l6rri1qrza],
.components-rejoining-animation[b-l6rri1qrza] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-retrying[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-failed[b-l6rri1qrza],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-l6rri1qrza] {
    display: block;
}


#components-reconnect-modal[b-l6rri1qrza] {
    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-l6rri1qrza 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-l6rri1qrza 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-l6rri1qrza 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-l6rri1qrza]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-l6rri1qrza 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-l6rri1qrza {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-l6rri1qrza {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-l6rri1qrza {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-l6rri1qrza] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-l6rri1qrza] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-l6rri1qrza] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-l6rri1qrza] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-l6rri1qrza] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-l6rri1qrza] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-l6rri1qrza] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-l6rri1qrza 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-l6rri1qrza] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-l6rri1qrza {
    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/Portal.razor.rz.scp.css */
/* B2B client self-service portal — the page renders only the active cview-* SECTION CONTENT; the
   sidebar + header + preview banner are the layout's chrome (ClientPortalLayout). */
.cportal-main[b-o7eice7ugh] {
    flex: 1 1 auto;
    min-width: 0;
}

.cportal-pay-opt[b-o7eice7ugh] {
    text-transform: none;
    padding: 14px;
    text-align: left;
    justify-content: flex-start;
}

/* Support ticket reply thread — staff replies tinted with the Support (teal) accent, client replies neutral. */
.ctk-reply[b-o7eice7ugh] {
    border-radius: 8px;
    padding: 7px 10px;
    margin-bottom: 6px;
    border: 1px solid var(--mud-palette-lines-default);
}

.ctk-reply.ctk-staff[b-o7eice7ugh] {
    background: color-mix(in srgb, var(--accent-teal) 10%, transparent);
    border-color: color-mix(in srgb, var(--accent-teal) 35%, transparent);
}

.ctk-reply.ctk-client[b-o7eice7ugh] {
    background: var(--mud-palette-surface);
}

/* My Profile (prototype renderClientProfile) — card titles, key/value rows, shipping-address rows. */
.cprof-title[b-o7eice7ugh] {
    font-size: .8rem;
    font-weight: 700;
    color: var(--mud-palette-success);
    font-family: var(--font-mono, monospace);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cprof-row[b-o7eice7ugh] {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    font-size: .85rem;
}

.cprof-row:last-child[b-o7eice7ugh] {
    border-bottom: none;
}

.cprof-key[b-o7eice7ugh] {
    color: var(--mud-palette-text-secondary);
    min-width: 140px;
}

.cprof-ship[b-o7eice7ugh] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
}
