/* /Components/Layout/OperationsLayout.razor.rz.scp.css */
.operations-shell[b-5fgfiey1wj] { min-height:100vh; background:#f5f6fa; }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.reconnect-accessible-title[b-xdnppnywbs] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.reconnect-compliance-copy[b-xdnppnywbs],
.reconnect-compliance-brand[b-xdnppnywbs] {
    display: none;
}

.components-reconnect-first-attempt-visible[b-xdnppnywbs],
.components-reconnect-repeated-attempt-visible[b-xdnppnywbs],
.components-reconnect-failed-visible[b-xdnppnywbs],
.components-pause-visible[b-xdnppnywbs],
.components-resume-failed-visible[b-xdnppnywbs],
.components-rejoining-animation[b-xdnppnywbs] {
    display: none;
}

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


#components-reconnect-modal[b-xdnppnywbs] {
    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-xdnppnywbs 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-xdnppnywbs {
    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;
    }
}

/* The operational workspace uses the desktop mark. Other apps retain their loader and locale. */
#components-reconnect-modal[data-brand="compliance08"][b-xdnppnywbs] {
    box-sizing: border-box;
    width: min(20rem, calc(100vw - 2rem));
    max-height: calc(100dvh - 2rem);
    margin: auto;
    padding: 2.25rem 1.75rem 1.75rem;
    border: 1px solid #e5e2f3;
    border-radius: 20px;
    /* MudBlazor's reconnect reset uses an important background with an unset theme variable here. */
    background-color: #fff !important;
    color: #192746;
    box-shadow: 0 24px 72px #19274626, 0 2px 8px #1927460d;
    opacity: 1;
    animation: none;
    transition: none;
    outline: none;
}

#components-reconnect-modal[data-brand="compliance08"][open][b-xdnppnywbs] {
    animation: compliance-reconnect-enter-b-xdnppnywbs 200ms ease-out both;
}

#components-reconnect-modal[data-brand="compliance08"][b-xdnppnywbs]::backdrop {
    background: #19274640;
    backdrop-filter: blur(3px);
    animation: none;
}

#components-reconnect-modal[data-brand="compliance08"] .components-reconnect-container[b-xdnppnywbs] {
    gap: 1.5rem;
}

#components-reconnect-modal[data-brand="compliance08"] .components-rejoining-animation[b-xdnppnywbs],
#components-reconnect-modal[data-brand="compliance08"] .reconnect-default-copy[b-xdnppnywbs] {
    display: none;
}

#components-reconnect-modal[data-brand="compliance08"] .reconnect-compliance-copy[b-xdnppnywbs] {
    display: inline;
}

#components-reconnect-modal[data-brand="compliance08"] .reconnect-compliance-brand[b-xdnppnywbs] {
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
    width: 84px;
    height: 84px;
    border: 1px solid #ebe8f7;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 4px 16px #6252cd14;
}

.reconnect-compliance-brand[b-xdnppnywbs]::before {
    content: "";
    position: absolute;
    inset: -9px;
    z-index: -1;
    border-radius: 28px;
    background: linear-gradient(135deg, #6252cd99, #5ca8fb80);
    filter: blur(15px);
    opacity: .24;
}

.reconnect-compliance-brand img[b-xdnppnywbs] {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

#components-reconnect-modal[data-brand="compliance08"].components-reconnect-show .reconnect-compliance-brand[b-xdnppnywbs]::before,
#components-reconnect-modal[data-brand="compliance08"].components-reconnect-retrying .reconnect-compliance-brand[b-xdnppnywbs]::before {
    animation: compliance-reconnect-glow-b-xdnppnywbs 2.2s ease-in-out infinite;
}

#components-reconnect-modal[data-brand="compliance08"] p[b-xdnppnywbs] {
    font-size: .9375rem;
    line-height: 1.5;
    font-weight: 500;
}

#components-reconnect-modal[data-brand="compliance08"] button[b-xdnppnywbs] {
    padding: .625rem 1.125rem;
    border-radius: 8px;
    background: #6252cd;
    color: #fff;
    font: inherit;
    font-size: .875rem;
    cursor: pointer;
}

#components-reconnect-modal[data-brand="compliance08"] button:hover[b-xdnppnywbs] {
    background: #5143b7;
}

#components-reconnect-modal[data-brand="compliance08"] button:focus-visible[b-xdnppnywbs] {
    outline: 3px solid #a6b7f4;
    outline-offset: 3px;
}

@keyframes compliance-reconnect-glow-b-xdnppnywbs {
    0%, 100% { opacity: .3; transform: scale(.96); }
    50% { opacity: .78; transform: scale(1.06); }
}

@keyframes compliance-reconnect-enter-b-xdnppnywbs {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    #components-reconnect-modal[data-brand="compliance08"][open][b-xdnppnywbs],
    #components-reconnect-modal[data-brand="compliance08"] .reconnect-compliance-brand[b-xdnppnywbs]::before {
        animation: none !important;
        transform: none;
    }

    #components-reconnect-modal[data-brand="compliance08"] .reconnect-compliance-brand[b-xdnppnywbs]::before {
        opacity: .4;
    }
}
/* /Components/OmniMetaWhatsAppPanel.razor.rz.scp.css */
.meta-shell[b-piu0mty9h8] {
    color: #17324d;
}

.meta-hero[b-piu0mty9h8],
.meta-section[b-piu0mty9h8],
.meta-connection[b-piu0mty9h8] {
    border-bottom: 1px solid #d8e1e8;
}

.meta-hero[b-piu0mty9h8] {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.meta-hero h2[b-piu0mty9h8],
.meta-section h3[b-piu0mty9h8] {
    margin: 0;
    letter-spacing: -.025em;
}

.meta-shell button[b-piu0mty9h8] {
    min-height: 40px;
    padding: .55rem .75rem;
    border: 1px solid #ccd8e2;
    border-radius: 8px;
    background: #fff;
    color: #17324d;
    box-shadow: none;
    font-weight: 700;
}

.meta-shell button:disabled[b-piu0mty9h8] {
    opacity: .55;
}

.primary[b-piu0mty9h8] {
    border-color: #ef6b33 !important;
    background: #ef6b33 !important;
    color: #fff !important;
}

.meta-state[b-piu0mty9h8] {
    margin: .85rem 0;
    padding: .85rem 0;
    border-bottom: 1px solid #d8e1e8;
    color: #526778;
}

.meta-state.error[b-piu0mty9h8] {
    color: #a83524;
}

.meta-state.warning[b-piu0mty9h8] {
    color: #725514;
}

.meta-state.display-name-review[b-piu0mty9h8] {
    padding: .9rem;
    display: grid;
    gap: .35rem;
    border: 1px solid #e4b8a5;
    border-radius: 10px;
    background: #fff8f3;
    color: #73351f;
}

.meta-state.display-name-review strong[b-piu0mty9h8] {
    color: #5f2b1b;
}

.meta-state.display-name-review span[b-piu0mty9h8],
.meta-state.display-name-review small[b-piu0mty9h8] {
    line-height: 1.5;
}

.meta-connection[b-piu0mty9h8] {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .65rem 1rem;
}

.meta-connection div[b-piu0mty9h8] {
    min-width: 0;
    display: grid;
}

.meta-connection div:last-child[b-piu0mty9h8] {
    grid-column: 1 / -1;
    padding-top: .65rem;
    border-top: 1px solid #edf1f4;
}

.meta-connection small[b-piu0mty9h8],
.phone-card small[b-piu0mty9h8],
.template-list small[b-piu0mty9h8] {
    color: #6d8090;
}

.meta-connection code[b-piu0mty9h8] {
    overflow: hidden;
    font-size: .72rem;
    text-overflow: ellipsis;
}

.status[b-piu0mty9h8],
.template-status[b-piu0mty9h8],
.quality[b-piu0mty9h8] {
    width: fit-content;
    padding: .2rem .45rem;
    border-radius: 5px;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status.active[b-piu0mty9h8],
.template-status.approved[b-piu0mty9h8],
.quality.green[b-piu0mty9h8] {
    background: #dff7e9;
    color: #147443;
}

.template-status.pending[b-piu0mty9h8],
.quality.yellow[b-piu0mty9h8] {
    background: #fff3c9;
    color: #725514;
}

.template-status.rejected[b-piu0mty9h8],
.template-status.disabled[b-piu0mty9h8],
.quality.red[b-piu0mty9h8] {
    background: #ffe4df;
    color: #9c3022;
}

.meta-section[b-piu0mty9h8] {
    padding: 1.1rem 0;
}

.meta-section-title[b-piu0mty9h8] {
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.meta-section-title em[b-piu0mty9h8] {
    min-width: 1.75rem;
    color: #6d8090;
    font-style: normal;
    font-weight: 750;
    text-align: right;
}

.phone-grid[b-piu0mty9h8],
.template-list[b-piu0mty9h8] {
    display: grid;
}

.phone-card[b-piu0mty9h8] {
    padding: .9rem 0;
    display: grid;
    gap: .75rem;
    border-top: 1px solid #dce5eb;
}

.phone-card:last-child[b-piu0mty9h8] {
    padding-bottom: 0;
}

.phone-head[b-piu0mty9h8] {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.phone-head div[b-piu0mty9h8] {
    min-width: 0;
    display: grid;
    flex: 1;
}

.phone-dot[b-piu0mty9h8] {
    width: .65rem;
    height: .65rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #c2ccd3;
}

.enabled .phone-dot[b-piu0mty9h8] {
    background: #28a967;
}

.phone-card label[b-piu0mty9h8],
.template-editor label[b-piu0mty9h8] {
    display: grid;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 700;
}

.phone-card input[b-piu0mty9h8],
.template-editor input[b-piu0mty9h8],
.template-editor select[b-piu0mty9h8],
.template-editor textarea[b-piu0mty9h8] {
    padding: .65rem;
    border: 1px solid #ccd8e2;
    border-radius: 8px;
    background: #fff;
}

.phone-foot[b-piu0mty9h8] {
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}

.phone-foot small[b-piu0mty9h8] {
    margin-right: auto;
}

.meta-empty[b-piu0mty9h8] {
    padding: .85rem 0;
    color: #6d8090;
}

.template-list article[b-piu0mty9h8] {
    padding: .8rem 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: .65rem .75rem;
    border-top: 1px solid #dde5eb;
}

.template-summary[b-piu0mty9h8] {
    min-width: 0;
    display: grid;
}

.template-summary strong[b-piu0mty9h8] {
    overflow-wrap: anywhere;
}

.template-actions[b-piu0mty9h8] {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: .45rem;
    flex-wrap: wrap;
}

.template-list em[b-piu0mty9h8] {
    color: #a83524;
    font-size: .75rem;
}

.danger[b-piu0mty9h8] {
    border-color: #e6a99f !important;
    color: #a83524 !important;
}

.danger.ghost[b-piu0mty9h8] {
    border-color: transparent !important;
}

.template-editor[b-piu0mty9h8] {
    margin-bottom: 1rem;
    padding: .9rem;
    display: grid;
    gap: .85rem;
    border: 1px solid #d8e1e8;
    border-radius: 10px;
    background: #f7f9fa;
}

.editor-grid[b-piu0mty9h8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
}

.template-editor textarea[b-piu0mty9h8] {
    font-family: ui-monospace, monospace;
    font-size: .75rem;
}

.example-upload[b-piu0mty9h8] {
    padding: .8rem;
    border: 1px dashed #bdccd6;
    border-radius: 8px;
}

.editor-actions[b-piu0mty9h8] {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
}

@media (max-width: 700px) {
    .editor-grid[b-piu0mty9h8] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Operations/InventoryWorkspace.razor.rz.scp.css */
.inventory-workspace[b-ov6xjx9167] { min-width:0; }
.inventory-heading[b-ov6xjx9167], .inventory-pager[b-ov6xjx9167], .inventory-dialog-actions[b-ov6xjx9167], .inventory-notice[b-ov6xjx9167], .inventory-pending[b-ov6xjx9167] { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.inventory-heading[b-ov6xjx9167] { margin-bottom:14px; color:#33435e; font-size:12px; flex-wrap:wrap; }
.inventory-heading label[b-ov6xjx9167] { display:flex; align-items:center; gap:8px; }
.inventory-heading small[b-ov6xjx9167], small[b-ov6xjx9167] { color:#75829a; font-size:11px; }
.inventory-workspace .op-metrics.inventory-metrics[b-ov6xjx9167] { grid-template-columns:repeat(auto-fit,minmax(155px,1fr)); }
.inventory-metrics .inventory-metric-action[b-ov6xjx9167] { border:0; padding:0; text-align:left; width:100%; color:inherit; background:transparent; }
.inventory-metric-action span[b-ov6xjx9167] { display:block; color:#68758c; font-size:12px; }
.inventory-metric-action strong[b-ov6xjx9167] { display:block; font-size:27px; margin-top:12px; }
.inventory-charts[b-ov6xjx9167] { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.6fr) minmax(0,1fr); gap:14px; margin:14px 0 20px; }
.inventory-charts .op-panel[b-ov6xjx9167] { max-height:360px; overflow:auto; }
.inventory-charts[b-ov6xjx9167]  .inventory-timeline { width:100%; min-height:170px; }
.inventory-tabs[b-ov6xjx9167] { display:flex; gap:22px; border-bottom:1px solid #dfe5f0; margin:18px 0; }
.inventory-tabs button[b-ov6xjx9167] { border:0; background:transparent; padding:10px 0; color:#69768f; border-radius:0; border-bottom:2px solid transparent; }
.inventory-tabs button.selected[b-ov6xjx9167] { color:#6255c9; border-bottom-color:#6255c9; font-weight:600; }
.inventory-tools[b-ov6xjx9167] { flex-wrap:wrap; }
.inventory-refresh[b-ov6xjx9167] { margin-left:auto; }
.inventory-scroll[b-ov6xjx9167] { max-height:520px; overflow:auto; }
.inventory-scroll th[b-ov6xjx9167] { position:sticky; top:0; z-index:1; background:#fff; }
.inventory-scroll td small[b-ov6xjx9167] { display:block; margin-top:4px; }
.inventory-date[b-ov6xjx9167] { white-space:nowrap; font-variant-numeric:tabular-nums; }
.inventory-reason[b-ov6xjx9167] { min-width:150px; max-width:320px; overflow-wrap:anywhere; white-space:normal; }
.inventory-scroll .op-link[b-ov6xjx9167] { border:0; padding:0; background:transparent; text-align:left; color:#6255c9; max-width:260px; white-space:normal; }
.inventory-pager[b-ov6xjx9167] { padding-top:16px; font-size:12px; color:#68758c; }
.inventory-pager>div[b-ov6xjx9167] { display:flex; align-items:center; gap:12px; }
.inventory-pager span[b-ov6xjx9167] { white-space:nowrap; }
.inventory-locations[b-ov6xjx9167] { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,2fr); gap:14px; }
.inventory-locations h2[b-ov6xjx9167] { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.inventory-notice[b-ov6xjx9167], .inventory-pending[b-ov6xjx9167] { padding:12px 16px; border-radius:8px; font-size:12px; margin:10px 0; background:#edf7f3; color:#1a6758; }
.inventory-pending[b-ov6xjx9167] { background:#fff7e7; color:#825e25; }
.inventory-dialog[b-ov6xjx9167] { width:min(680px,calc(100vw - 28px)); max-height:90dvh; margin:auto; background:#fff; overflow:auto; border:1px solid #dce3ef; border-radius:14px; padding:24px; color:#20304b; box-shadow:0 24px 80px #14223c30; }
.inventory-dialog[b-ov6xjx9167]::backdrop { background:#17244065; }
.inventory-dialog header[b-ov6xjx9167] { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; margin-bottom:18px; }
.inventory-dialog header h2[b-ov6xjx9167] { font-size:19px; margin:4px 0; overflow-wrap:anywhere; }
.inventory-dialog header>button[b-ov6xjx9167] { font-size:22px; line-height:1; }
.inventory-dialog fieldset[b-ov6xjx9167] { border:0; padding:0; margin:0; }
.inventory-dialog fieldset:disabled[b-ov6xjx9167] { opacity:.65; }
.inventory-form-grid[b-ov6xjx9167] { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin:18px 0; }
.inventory-form-grid label[b-ov6xjx9167], .inventory-policy label[b-ov6xjx9167] { display:flex; flex-direction:column; gap:6px; font-size:12px; }
.inventory-form-grid input[b-ov6xjx9167], .inventory-form-grid select[b-ov6xjx9167], .inventory-policy input[b-ov6xjx9167] { min-width:0; width:100%; height:36px; }
.inventory-form-full[b-ov6xjx9167] { grid-column:1/-1; }
.inventory-balances[b-ov6xjx9167] { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:10px; padding:14px; background:#f6f7fb; border-radius:8px; }
.inventory-balances span[b-ov6xjx9167] { display:block; font-size:12px; color:#6c7990; }
.inventory-balances strong[b-ov6xjx9167] { display:block; margin-top:5px; font-size:20px; }
.inventory-dialog-actions[b-ov6xjx9167] { justify-content:flex-start; margin-top:12px; }
.inventory-confirm[b-ov6xjx9167] { border:1px solid #d9d3f5; background:#f7f5fe; border-radius:8px; padding:16px; font-size:13px; margin-top:14px; }
.inventory-confirm p[b-ov6xjx9167] { margin:10px 0; overflow-wrap:anywhere; }
.inventory-confirm>div[b-ov6xjx9167] { display:flex; justify-content:flex-end; gap:8px; }
.inventory-policy[b-ov6xjx9167] { display:flex; align-items:end; gap:12px; margin-top:24px; padding-top:18px; border-top:1px solid #e5eaf3; }
.inventory-form-grid .inventory-checkbox[b-ov6xjx9167] { flex-direction:row; align-items:center; }
.inventory-checkbox input[b-ov6xjx9167] { width:16px; }
@media(max-width:1200px) { .inventory-charts[b-ov6xjx9167] { grid-template-columns:1fr 1fr; } .inventory-charts article:last-child[b-ov6xjx9167] { grid-column:1/-1; } }
@media(max-width:650px) {
    .inventory-charts[b-ov6xjx9167], .inventory-locations[b-ov6xjx9167] { grid-template-columns:minmax(0,1fr); }
    .inventory-workspace .op-metrics.inventory-metrics[b-ov6xjx9167] { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .inventory-scroll[b-ov6xjx9167] { max-height:440px; }
    .inventory-pager[b-ov6xjx9167] { align-items:stretch; flex-direction:column; }
    .inventory-pager>div[b-ov6xjx9167] { justify-content:space-between; gap:6px; }
    .inventory-dialog[b-ov6xjx9167] { padding:18px; }
    .inventory-form-grid[b-ov6xjx9167] { grid-template-columns:1fr; }
    .inventory-notice[b-ov6xjx9167], .inventory-pending[b-ov6xjx9167] { flex-wrap:wrap; }
}
/* /Components/Operations/OperationsChart.razor.rz.scp.css */
.op-chart-interaction[b-1ltiet4xyq] {
    position: relative;
    min-width: 0;
    padding-top: 25px;
}

.op-chart-interaction .op-chart-help[b-1ltiet4xyq] {
    position: absolute;
    right: 0;
    top: -2px;
    z-index: 1;
    width: 22px;
    height: 22px;
    min-height: 22px;
    padding: 0;
    border: 1px solid #dfe3ed;
    border-radius: 50%;
    color: #6058c7;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: help;
}

.op-chart-tooltip[b-1ltiet4xyq] {
    position: fixed;
    z-index: 1400;
    width: max-content;
    max-width: min(300px, calc(100vw - 24px));
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    background: #252c40;
    border: 1px solid #414960;
    border-radius: 8px;
    box-shadow: 0 5px 20px #252c4026;
    font-size: 12px;
    line-height: 1.5;
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.op-chart-tooltip[hidden][b-1ltiet4xyq] { display: none; }
.op-chart-tooltip strong[b-1ltiet4xyq] { color: #fff; font-size: 12px; }
.op-chart-tooltip [data-tip-value][b-1ltiet4xyq] { color: #eeeaff; font-weight: 600; }
.op-chart-tooltip [data-tip-detail][b-1ltiet4xyq] { color: #d8deed; }
.op-chart-tooltip span:empty[b-1ltiet4xyq] { display: none; }

.op-chart-interaction[b-1ltiet4xyq]  [data-chart-tip] { cursor: help; }
.op-chart-interaction[b-1ltiet4xyq]  [data-chart-tip]:focus-visible {
    outline: 2px solid #6058c7;
    outline-offset: 3px;
}
.op-chart-interaction[b-1ltiet4xyq]  .op-chart-hit { fill: transparent; }
.op-chart-interaction[b-1ltiet4xyq]  .op-chart-datum:hover .op-chart-point,
.op-chart-interaction[b-1ltiet4xyq]  .op-chart-datum:focus .op-chart-point { r: 6; }
.op-chart-interaction[b-1ltiet4xyq]  .op-chart-datum:hover .op-column,
.op-chart-interaction[b-1ltiet4xyq]  .op-chart-datum:focus .op-column { fill: #6058c7; }
.op-chart-interaction[b-1ltiet4xyq]  .op-donut { position: relative; }
.op-chart-interaction[b-1ltiet4xyq]  .op-donut svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.op-chart-interaction[b-1ltiet4xyq]  .op-donut-center { position: relative; pointer-events: none; background: transparent; border-color: transparent; }
.op-chart-interaction[b-1ltiet4xyq]  .op-donut circle[data-chart-tip]:hover { filter: brightness(.88); }
/* /Components/Operations/OperationsPagedContent.razor.rz.scp.css */
.op-paged-content[b-fzc7ttmuof] { min-width:0; }
.op-paged-scroll[b-fzc7ttmuof] { max-height:520px; overflow:auto; }
.op-paged-scroll[b-fzc7ttmuof]  th { position:sticky; top:0; z-index:1; background:#fff; }
.op-paged-scroll[b-fzc7ttmuof]  time { white-space:nowrap; font-variant-numeric:tabular-nums; }
.op-paged-footer[b-fzc7ttmuof] { display:flex; justify-content:space-between; align-items:center; gap:12px; padding-top:16px; color:#68758c; font-size:12px; }
.op-paged-navigation[b-fzc7ttmuof] { display:flex; align-items:center; gap:12px; }
.op-paged-navigation>span[b-fzc7ttmuof] { white-space:nowrap; }
.op-paged-navigation button[b-fzc7ttmuof] { display:inline-flex; align-items:center; justify-content:center; gap:3px; }

@media(max-width:600px) {
    .op-paged-scroll[b-fzc7ttmuof] { max-height:440px; }
    .op-paged-footer[b-fzc7ttmuof] { flex-direction:column; align-items:stretch; }
    .op-paged-navigation[b-fzc7ttmuof] { justify-content:space-between; gap:6px; }
}
/* /Components/Operations/OperationsSaleDialog.razor.rz.scp.css */
.op-sale-dialog[b-9rouwrigrw] {
    position:fixed;
    inset:0 0 0 auto;
    margin:0;
    width:min(680px,100%);
    max-width:100%;
    height:100dvh;
    max-height:100dvh;
    border:0;
    border-left:1px solid #e5e8f0;
    padding:28px;
    color:#262b40;
    background:#fff;
    box-shadow:-12px 0 60px #17203a20;
    font-family:"Lexend","Segoe UI",sans-serif;
}

.op-sale-dialog[b-9rouwrigrw]::backdrop {
    background:#15203d60;
}

header[b-9rouwrigrw] {
    display:flex;
    align-items:start;
    justify-content:space-between;
    gap:16px;
    padding-bottom:26px;
}

header small[b-9rouwrigrw] {
    color:#71788b;
    font-size:12px;
}

h2[b-9rouwrigrw] {
    font-size:20px;
    margin:6px 0 0;
    overflow-wrap:anywhere;
}

button[b-9rouwrigrw] {
    color:#42495b;
    background:#f4f5f8;
    border:0;
    padding:6px;
    width:36px;
    min-height:36px;
    border-radius:8px;
    box-shadow:none;
}

button:focus-visible[b-9rouwrigrw] {
    outline:3px solid #a8a2eb;
    outline-offset:3px;
}

.op-sale-info[b-9rouwrigrw] {
    display:flex;
    align-items:center;
    gap:16px;
    font-size:12px;
    padding:18px 0;
    border-top:1px solid #e7eaf1;
    border-bottom:1px solid #e7eaf1;
}

.op-sale-info strong[b-9rouwrigrw] {
    margin-left:auto;
    font-size:18px;
}

.op-sale-lines[b-9rouwrigrw] {
    overflow-x:auto;
    margin:24px 0;
}

table[b-9rouwrigrw] {
    width:100%;
    border-collapse:collapse;
    font-size:12px;
}

th[b-9rouwrigrw] {
    color:#71788b;
    font-weight:500;
    text-align:left;
    padding:10px 8px;
    white-space:nowrap;
}

td[b-9rouwrigrw] {
    border-bottom:1px solid #edf0f5;
    padding:18px 8px;
}

td:first-child[b-9rouwrigrw] {
    min-width:140px;
}

td:not(:first-child)[b-9rouwrigrw] {
    text-align:right;
    white-space:nowrap;
}

footer[b-9rouwrigrw] {
    display:flex;
    justify-content:space-between;
    font-size:14px;
    border-top:1px solid #e7eaf1;
    padding-top:22px;
}

footer strong[b-9rouwrigrw] {
    font-size:22px;
}

@media(max-width:640px) {
    .op-sale-dialog[b-9rouwrigrw] {
        padding:20px 16px;
    }
}
/* /Components/Operations/OperationsSalesTable.razor.rz.scp.css */
.op-sales-table[b-frffue0del] { min-width: 0; }
.op-sales-table .op-sales-scroll[b-frffue0del] { max-height: 520px; overflow: auto; }
.op-sales-scroll th[b-frffue0del] { position: sticky; top: 0; z-index: 1; background: #fff; }
.op-sales-table .op-sale-date[b-frffue0del] { white-space: nowrap; font-variant-numeric: tabular-nums; }
.op-sales-footer[b-frffue0del] { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 16px; color: #68758c; font-size: 12px; }
.op-sales-pagination[b-frffue0del] { display: flex; align-items: center; gap: 12px; }
.op-sales-pagination > span[b-frffue0del] { white-space: nowrap; }
.op-sales-pagination button[b-frffue0del] { display: inline-flex; align-items: center; justify-content: center; gap: 3px; }

@media (max-width: 600px) {
    .op-sales-footer[b-frffue0del] { flex-direction: column; align-items: stretch; }
    .op-sales-pagination[b-frffue0del] { justify-content: space-between; gap: 6px; }
    .op-sales-table .op-sales-scroll[b-frffue0del] { max-height: 440px; }
}
/* /Components/Pages/Announcements.razor.rz.scp.css */
.announcement-editor[b-w3lp65v2ty],
.announcement-preview-shell[b-w3lp65v2ty],
.announcement-list[b-w3lp65v2ty] {
    padding: 1.5rem;
}

.announcement-list[b-w3lp65v2ty] {
    margin-top: 1.5rem;
}

.announcement-editor[b-w3lp65v2ty] {
    display: grid;
    gap: 1rem;
}

.announcement-panel-heading[b-w3lp65v2ty],
.announcement-editor-footer[b-w3lp65v2ty],
.announcement-actions[b-w3lp65v2ty] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.announcement-editor-footer[b-w3lp65v2ty] {
    align-items: flex-end;
}

.announcement-preview-backdrop[b-w3lp65v2ty] {
    min-height: 590px;
    margin-top: 1rem;
    padding: 2rem 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 10%, rgba(111, 164, 255, .28), transparent 35%),
        linear-gradient(145deg, rgba(27, 16, 75, .96), rgba(54, 43, 124, .9)),
        #1d124d;
}

.announcement-preview[b-w3lp65v2ty] {
    width: min(100%, 430px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 26px 60px rgba(16, 13, 48, .3);
    text-align: left;
}

.announcement-preview-art[b-w3lp65v2ty] {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #fbfaf8;
}

.announcement-preview-content[b-w3lp65v2ty] {
    padding: 1.55rem;
}

.announcement-preview-kicker[b-w3lp65v2ty] {
    display: inline-flex;
    margin-bottom: .75rem;
    padding: .32rem .6rem;
    border-radius: 999px;
    color: #3e22b8;
    background: #efeaff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.announcement-preview h2[b-w3lp65v2ty] {
    margin: 0;
    color: #24243b;
    font-size: 1.25rem;
    line-height: 1.3;
}

.announcement-preview p[b-w3lp65v2ty] {
    margin: .85rem 0 1.25rem;
    color: #65657d;
    font-size: .91rem;
    line-height: 1.48;
    white-space: pre-wrap;
}

.announcement-preview button[b-w3lp65v2ty] {
    width: 100%;
    padding: .8rem 1rem;
    border-radius: 12px;
    font-weight: 700;
}

.announcement-primary-action[b-w3lp65v2ty] {
    border: 0;
    color: #fff;
    background: linear-gradient(100deg, #3f21bd, #5792f8);
    box-shadow: 0 12px 24px rgba(63, 33, 189, .2);
}

.announcement-dismiss-action[b-w3lp65v2ty] {
    margin-top: .55rem;
    border: 1px solid #e8e4f3;
    color: #625d76;
    background: #fff;
}

.announcement-message-cell[b-w3lp65v2ty] {
    max-width: 560px;
}

.announcement-message-cell small[b-w3lp65v2ty] {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 700px) {
    .announcement-editor[b-w3lp65v2ty],
    .announcement-preview-shell[b-w3lp65v2ty],
    .announcement-list[b-w3lp65v2ty] {
        padding: 1rem;
    }

    .announcement-editor-footer[b-w3lp65v2ty],
    .announcement-panel-heading[b-w3lp65v2ty] {
        align-items: stretch;
        flex-direction: column;
    }
}
/* /Components/Pages/DesktopGoogleLogin.razor.rz.scp.css */
.desktop-google-shell[b-92uhubyag6] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 18px;
    background: linear-gradient(145deg, #f8f8ff 0%, #eff2ff 100%);
    color: #1e2238;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.desktop-google-panel[b-92uhubyag6] {
    width: min(420px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px;
    border: 1px solid #e2e4ee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(30, 34, 56, .10);
    text-align: center;
}

.desktop-google-brand[b-92uhubyag6] {
    display: flex;
    align-items: center;
    gap: 11px;
}

.desktop-google-brand img[b-92uhubyag6] {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.desktop-google-brand strong[b-92uhubyag6] {
    color: #21114f;
    font-size: 23px;
    letter-spacing: -.03em;
}

.desktop-google-brand strong span[b-92uhubyag6] {
    color: #5b8cff;
}

.desktop-google-kicker[b-92uhubyag6] {
    margin-top: 2px;
    color: #5b57e0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
}

.desktop-google-panel h1[b-92uhubyag6] {
    margin: 0;
    font-size: 25px;
}

.desktop-google-panel p[b-92uhubyag6] {
    margin: 0 0 4px;
    max-width: 340px;
    color: #68708b;
    line-height: 1.5;
}

.desktop-google-error[b-92uhubyag6] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fff1f2;
    color: #b42335;
    font-size: 14px;
}

.desktop-google-security[b-92uhubyag6] {
    margin-top: 4px;
    color: #7d849e;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 520px) {
    .desktop-google-panel[b-92uhubyag6] {
        padding: 26px 18px;
    }
}
/* /Components/Pages/Operations.razor.rz.scp.css */
.operations[b-h98yt39r3e] {
    --op-ink:#252c40;
    --op-muted:#70798d;
    --op-accent:#6058c7;
    --op-line:#e7eaf1;
    color:var(--op-ink);
    display:grid;
    grid-template-columns:224px minmax(0,1fr);
    min-height:100vh;
    font-family:"Lexend","Segoe UI",sans-serif;
    font-variant-numeric:tabular-nums;
    font-size:13px;
}

.operations[b-h98yt39r3e]  button {
    min-height:34px;
    padding:7px 12px;
    font:inherit;
    font-size:12px;
    font-weight:500;
    border:1px solid #dfe3ed;
    border-radius:7px;
    color:var(--op-ink);
    background:#fff;
    box-shadow:none;
    cursor:pointer;
    transform:none;
}

.operations[b-h98yt39r3e]  button:hover {
    background:#f2f1fb;
    box-shadow:none;
    transform:none;
    filter:none;
}

.operations[b-h98yt39r3e]  button:disabled {
    opacity:.55;
    cursor:wait;
}

.operations[b-h98yt39r3e]  button:focus-visible,.operations[b-h98yt39r3e]  a:focus-visible,.operations[b-h98yt39r3e]  input:focus-visible,.operations[b-h98yt39r3e]  select:focus-visible,.operations[b-h98yt39r3e]  summary:focus-visible {
    outline:3px solid #aaa4e9;
    outline-offset:3px;
}

.operations[b-h98yt39r3e]  .op-primary {
    color:#fff;
    background:var(--op-accent);
    border-color:var(--op-accent);
}

.operations[b-h98yt39r3e]  .op-primary:hover {
    background:#4f46b6;
}

.operations[b-h98yt39r3e]  .op-icon-button {
    width:34px;
    height:34px;
    padding:6px;
    flex-shrink:0;
}

.operations[b-h98yt39r3e]  input,.operations[b-h98yt39r3e]  select {
    border:1px solid #dfe3ed;
    background:#fff;
    color:var(--op-ink);
    border-radius:7px;
    min-height:34px;
    padding:6px 9px;
    font:inherit;
    font-size:12px;
    max-width:100%;
    box-shadow:none;
}

.operations[b-h98yt39r3e]  .mud-icon-root {
    flex-shrink:0;
}

.op-sidebar[b-h98yt39r3e] {
    position:sticky;
    top:0;
    height:100dvh;
    display:flex;
    flex-direction:column;
    padding:25px 15px 0;
    background:#fff;
    border-right:1px solid var(--op-line);
    z-index:20;
    overflow-y:auto;
}

.op-brand[b-h98yt39r3e] {
    display:flex;
    align-items:center;
    gap:9px;
    padding:0 10px 27px;
    color:#2e3049;
    font-size:16px;
    letter-spacing:-.6px;
}

.op-brand-mark[b-h98yt39r3e] {
    width:30px;
    height:30px;
    display:block;
    object-fit:contain;
    flex-shrink:0;
}

.op-business[b-h98yt39r3e] {
    border-top:1px solid var(--op-line);
    padding:22px 6px 14px;
    display:flex;
    align-items:center;
    gap:10px;
}

.op-business-avatar[b-h98yt39r3e] {
    background:#edf2ed;
    color:#487254;
    width:36px;
    height:36px;
    flex-shrink:0;
    display:grid;
    place-items:center;
    font-size:16px;
    border-radius:10px;
    font-weight:600;
    overflow:hidden;
}

.op-business-avatar.has-logo[b-h98yt39r3e] {
    background:#fff;
    border:1px solid var(--op-line);
}

.op-business-avatar img[b-h98yt39r3e] {
    display:block;
    width:100%;
    height:100%;
    padding:2px;
    box-sizing:border-box;
    object-fit:contain;
}

.op-business>div[b-h98yt39r3e] {
    min-width:0;
}

.op-business strong[b-h98yt39r3e] {
    font-size:13px;
    display:block;
    overflow-wrap:anywhere;
}

.op-business small[b-h98yt39r3e] {
    color:var(--op-muted);
    font-size:11px;
    display:block;
    margin-top:3px;
}

.op-tenant-picker[b-h98yt39r3e] {
    display:flex;
    flex-direction:column;
    gap:5px;
    margin:0 6px 18px;
    font-size:10px;
    color:var(--op-muted);
}

.op-tenant-picker select[b-h98yt39r3e] {
    width:100%;
}

.op-nav[b-h98yt39r3e] {
    display:flex;
    flex-direction:column;
    gap:5px;
    margin:8px 0 32px;
}

.op-nav a[b-h98yt39r3e] {
    display:flex;
    gap:12px;
    align-items:center;
    min-height:42px;
    padding:10px 12px;
    color:#697185;
    font-size:12px;
    border-radius:7px;
    transition:background .15s;
}

.op-nav a:hover[b-h98yt39r3e] {
    background:#f7f8fb;
    color:var(--op-ink);
}

.op-nav a.selected[b-h98yt39r3e] {
    background:#eeecfb;
    color:#5b50be;
    font-weight:550;
}

.op-nav b[b-h98yt39r3e] {
    margin-left:auto;
    background:#e1dcf7;
    color:#574ab1;
    font-size:10px;
    padding:1px 5px;
    border-radius:4px;
}

.op-sidebar-footer[b-h98yt39r3e] {
    margin-top:auto;
    padding:12px 4px 0;
    border-top:1px solid var(--op-line);
}

.op-sidebar-footer>a[b-h98yt39r3e] {
    display:flex;
    gap:10px;
    align-items:center;
    padding:11px 8px;
    color:var(--op-muted);
    font-size:12px;
}

.op-sidebar-footer>a>span[b-h98yt39r3e] {
    margin-left:auto;
}

.op-account[b-h98yt39r3e] {
    display:flex;
    gap:8px;
    align-items:center;
    border-top:1px solid var(--op-line);
    padding:18px 0;
    margin-top:13px;
}

.op-account-avatar[b-h98yt39r3e] {
    display:grid;
    place-items:center;
    width:29px;
    height:29px;
    background:#eeedf7;
    color:#6a60ad;
    border-radius:50%;
    flex-shrink:0;
    overflow:hidden;
}

.op-account-avatar img[b-h98yt39r3e] {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.op-account>div[b-h98yt39r3e] {
    min-width:0;
    flex:1;
}

.op-account strong[b-h98yt39r3e] {
    display:block;
    font-size:11px;
    font-weight:550;
}

.op-account small[b-h98yt39r3e] {
    display:block;
    font-size:9px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    color:var(--op-muted);
}

.op-account .op-icon-button[b-h98yt39r3e] {
    border:0;
    width:27px;
}

.op-main[b-h98yt39r3e] {
    min-width:0;
    padding:26px 28px 40px;
}

.op-heading[b-h98yt39r3e] {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.op-heading-title[b-h98yt39r3e] {
    display:flex;
    align-items:center;
    gap:12px;
}

.op-breadcrumb[b-h98yt39r3e] {
    display:block;
    color:var(--op-muted);
    font-size:11px;
    margin-bottom:4px;
}

.op-heading h1[b-h98yt39r3e] {
    margin:0;
    font-size:26px;
    letter-spacing:-.8px;
    font-weight:600;
    line-height:1.35;
}

.op-heading-actions[b-h98yt39r3e] {
    display:flex;
    gap:16px;
    align-items:center;
}

.op-connection[b-h98yt39r3e] {
    display:flex;
    align-items:center;
    gap:7px;
    font-size:11px;
    color:var(--op-muted);
}

.op-connection small[b-h98yt39r3e] {
    padding-left:7px;
    border-left:1px solid #dce1e9;
    font-size:10px;
}

.op-dot[b-h98yt39r3e] {
    width:6px;
    height:6px;
    border-radius:50%;
    background:#ca9239;
}

.op-dot.live[b-h98yt39r3e] {
    background:#26977d;
    box-shadow:0 0 0 3px #26977d14;
}

.operations .op-menu-button[b-h98yt39r3e] {
    display:none;
}

.op-filters[b-h98yt39r3e] {
    margin:0;
}

.op-filter-top[b-h98yt39r3e] {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.op-periods[b-h98yt39r3e] {
    display:flex;
    background:#e9ebf2;
    padding:3px;
    border-radius:8px;
    gap:2px;
}

.op-periods button[b-h98yt39r3e] {
    background:transparent;
    color:#687185;
    border:0;
    min-height:30px;
    padding:5px 11px;
    font-size:11px;
}

.op-periods button.selected[b-h98yt39r3e] {
    background:#fff;
    color:#373858;
    box-shadow:0 1px 3px #25314a10;
}

.op-date-range[b-h98yt39r3e] {
    display:flex;
    align-items:center;
    border:1px solid #dfe3ed;
    border-radius:7px;
    background:#fff;
    min-height:36px;
    margin-left:auto;
    overflow:hidden;
}

.op-date-range input[b-h98yt39r3e] {
    border:0;
    padding:5px 7px;
    font-size:11px;
    width:119px;
    min-height:32px;
    border-radius:0;
}

.op-date-range>span[b-h98yt39r3e] {
    color:#a0a6b5;
}

.op-filter-button[b-h98yt39r3e] {
    display:flex;
    gap:6px;
    align-items:center;
}

.op-filter-button b[b-h98yt39r3e] {
    font-size:10px;
    background:#eeebfb;
    padding:0 4px;
    border-radius:3px;
    color:var(--op-accent);
}

.op-filter-options[b-h98yt39r3e] {
    display:flex;
    align-items:end;
    flex-wrap:wrap;
    gap:12px;
    margin-top:13px;
    background:#fff;
    border:1px solid var(--op-line);
    border-radius:9px;
    padding:15px;
}

.op-filter-options label[b-h98yt39r3e] {
    display:flex;
    flex-direction:column;
    gap:5px;
    flex:1 1 140px;
    min-width:0;
    font-size:10px;
    color:var(--op-muted);
}

.op-filter-options select[b-h98yt39r3e] {
    width:100%;
}

.op-scope[b-h98yt39r3e] {
    font-size:10px;
    color:var(--op-muted);
    margin:12px 0 20px;
    display:flex;
    justify-content:space-between;
    gap:16px;
    overflow-wrap:anywhere;
}

.operations[b-h98yt39r3e]  .op-metrics {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:17px;
    margin-bottom:18px;
}

.operations[b-h98yt39r3e]  .op-metrics article {
    border:1px solid var(--op-line);
    background:#fff;
    border-radius:10px;
    padding:19px 19px 16px;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.operations[b-h98yt39r3e]  .op-metrics article.op-kpi-revenue {
    border-top:3px solid var(--op-accent);
    padding-top:17px;
}

.operations[b-h98yt39r3e]  .op-kpi-label {
    display:flex;
    gap:8px;
    align-items:center;
    justify-content:space-between;
    font-size:11px;
    color:#73798a;
}

.operations[b-h98yt39r3e]  .op-kpi-label svg {
    color:#858aa1;
    width:19px;
    height:19px;
}

.operations[b-h98yt39r3e]  .op-metrics article>span {
    font-size:11px;
    color:var(--op-muted);
}

.operations[b-h98yt39r3e]  .op-metrics article>strong {
    font-family:"Segoe UI",system-ui,sans-serif;
    font-size:clamp(22px,2vw,32px);
    font-weight:650;
    letter-spacing:-.9px;
    line-height:1.2;
    overflow-wrap:anywhere;
}

.operations[b-h98yt39r3e]  .op-metrics article>small,.operations[b-h98yt39r3e]  .op-comparison {
    color:var(--op-muted);
    font-size:10px;
    min-height:18px;
}

.operations[b-h98yt39r3e]  .op-comparison span {
    padding:3px 5px;
    border-radius:4px;
    margin-right:3px;
}

.operations[b-h98yt39r3e]  .positive {
    color:#227e61;
    background:#edf7f1;
}

.operations[b-h98yt39r3e]  .negative {
    color:#b85858;
    background:#fff0ee;
}

.operations[b-h98yt39r3e]  .neutral {
    color:#69778a;
    background:#f1f3f7;
}

.operations[b-h98yt39r3e]  .op-attention {
    display:flex;
    align-items:center;
    gap:0;
    padding:12px 16px;
    border:1px solid #eee4d5;
    background:#fffcf7;
    border-radius:9px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.operations[b-h98yt39r3e]  .op-attention-title {
    display:flex;
    gap:9px;
    align-items:center;
    font-size:11px;
    color:#966829;
    padding-right:16px;
}

.operations[b-h98yt39r3e]  .op-attention a {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:11px;
    color:#686c79;
    border-left:1px solid #e9e3d9;
    padding:0 16px;
    min-height:22px;
}

.operations[b-h98yt39r3e]  .op-attention a:hover {
    color:var(--op-accent);
}

.operations[b-h98yt39r3e]  .op-attention b {
    color:#9c6b2b;
    font-size:13px;
}

.operations[b-h98yt39r3e]  .op-no-attention {
    display:flex;
    gap:8px;
    align-items:center;
    color:#6b7c70;
    font-size:11px;
}

.operations[b-h98yt39r3e]  .op-overview-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    align-items:stretch;
}

.operations[b-h98yt39r3e]  .op-span-2 {
    grid-column:span 2;
}

.operations[b-h98yt39r3e]  .op-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-bottom:18px;
    align-items:start;
}

.operations[b-h98yt39r3e]  .op-wide {
    grid-column:span 2;
}

.operations[b-h98yt39r3e]  .op-panel {
    background:#fff;
    border:1px solid var(--op-line);
    border-radius:10px;
    padding:20px;
    min-width:0;
    margin-bottom:18px;
}

.operations[b-h98yt39r3e]  .op-grid>.op-panel,.operations[b-h98yt39r3e]  .op-overview-grid>.op-panel {
    margin-bottom:0;
}

.operations[b-h98yt39r3e]  .op-panel h2 {
    font-size:12px;
    font-weight:550;
    margin:0 0 22px;
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:10px;
    line-height:1.5;
}

.operations[b-h98yt39r3e]  .op-panel h2 small {
    font-size:9px;
    color:var(--op-muted);
    font-weight:400;
}

.operations[b-h98yt39r3e]  .op-panel-heading {
    display:flex;
    justify-content:space-between;
    align-items:start;
    gap:12px;
    margin-bottom:18px;
}

.operations[b-h98yt39r3e]  .op-panel-heading h2 {
    margin:0;
}

.operations[b-h98yt39r3e]  .op-panel-heading small {
    font-size:9px;
    color:var(--op-muted);
    display:block;
    margin-top:3px;
}

.operations[b-h98yt39r3e]  .op-panel-heading>small {
    white-space:nowrap;
}

.operations[b-h98yt39r3e]  .op-subheading {
    color:var(--op-muted);
    font-size:10px;
    font-weight:500;
    margin:25px 0 17px;
    padding-top:17px;
    border-top:1px solid var(--op-line);
}

.operations[b-h98yt39r3e]  .op-icon-link {
    color:#979daf;
    line-height:1;
}

.operations[b-h98yt39r3e]  .op-icon-link:hover {
    color:var(--op-accent);
}

.operations[b-h98yt39r3e]  .op-text-link,.operations[b-h98yt39r3e]  .op-link {
    color:var(--op-accent);
    font-size:10px;
    text-decoration:none;
}

.operations[b-h98yt39r3e]  .op-link {
    display:inline-block;
    margin-top:20px;
}

.operations[b-h98yt39r3e]  .op-big-number {
    display:block;
    font-size:28px;
    letter-spacing:-.6px;
    margin:10px 0;
}

.operations[b-h98yt39r3e]  .op-note {
    font-size:10px;
    color:var(--op-muted);
    line-height:1.65;
    margin:16px 0 0;
}

.operations[b-h98yt39r3e]  .op-table {
    overflow-x:auto;
}

.operations[b-h98yt39r3e]  table {
    width:100%;
    border-collapse:collapse;
    font-size:11px;
    white-space:nowrap;
}

.operations[b-h98yt39r3e]  th {
    text-align:left;
    color:#8c92a1;
    font-size:9px;
    font-weight:500;
    padding:10px 10px 12px;
    border-bottom:1px solid var(--op-line);
}

.operations[b-h98yt39r3e]  td {
    padding:13px 10px;
    border-bottom:1px solid #f0f2f7;
}

.operations[b-h98yt39r3e]  th:first-child,.operations[b-h98yt39r3e]  td:first-child {
    padding-left:0;
}

.operations[b-h98yt39r3e]  tr:last-child td {
    border-bottom:0;
}

.operations[b-h98yt39r3e]  tbody tr:hover {
    background:#fafbfe;
}

.operations[b-h98yt39r3e]  td:first-child {
    max-width:240px;
    overflow:hidden;
    text-overflow:ellipsis;
}

.operations[b-h98yt39r3e]  .op-numeric {
    text-align:right;
}

.operations[b-h98yt39r3e]  .op-badge {
    background:#f1f3f8;
    color:#70788f;
    font-size:9px;
    padding:4px 7px;
    border-radius:5px;
    display:inline-block;
    white-space:nowrap;
}

.operations[b-h98yt39r3e]  .op-badge.success {
    color:#258565;
    background:#edf8f1;
}

.operations[b-h98yt39r3e]  .op-badge.warning {
    color:#a2772f;
    background:#fff6e3;
}

.operations[b-h98yt39r3e]  .op-badge.danger {
    color:#b65c67;
    background:#fdf0f1;
}

.operations[b-h98yt39r3e]  .op-text-button {
    color:var(--op-accent);
    border:0;
    background:transparent;
    padding:0;
    font-weight:500;
    min-height:26px;
    font-size:11px;
    max-width:200px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    display:block;
}

.operations[b-h98yt39r3e]  .op-table-tools {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

.operations[b-h98yt39r3e]  .op-table-tools>span {
    margin-left:auto;
    color:var(--op-muted);
    font-size:10px;
}
.operations[b-h98yt39r3e]  .op-table-tools>select {
    width:auto;
    min-width:150px;
}
.op-heading h1:focus[b-h98yt39r3e] {
    outline:none;
}

.operations[b-h98yt39r3e]  .op-search {
    display:flex;
    align-items:center;
    gap:6px;
    color:var(--op-muted);
    border:1px solid var(--op-line);
    border-radius:7px;
    padding-left:9px;
    min-width:0;
}

.operations[b-h98yt39r3e]  .op-search input {
    border:0;
    background:transparent;
    min-width:0;
    width:200px;
}

.operations[b-h98yt39r3e]  .op-request {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:16px 0;
    border-bottom:1px solid var(--op-line);
}

.operations[b-h98yt39r3e]  .op-request:last-child {
    border-bottom:0;
}

.operations[b-h98yt39r3e]  .op-request strong {
    display:block;
    font-size:12px;
    overflow-wrap:anywhere;
}

.operations[b-h98yt39r3e]  .op-request small {
    display:block;
    color:var(--op-muted);
    font-size:10px;
    margin-top:5px;
}

.operations[b-h98yt39r3e]  .op-actions {
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:wrap;
    font-size:12px;
}

.operations[b-h98yt39r3e]  .op-inbox-row {
    display:flex;
    align-items:center;
    gap:11px;
    padding:14px 0;
    border-bottom:1px solid #f0f2f6;
    font-size:11px;
}

.operations[b-h98yt39r3e]  .op-inbox-row:last-child {
    border-bottom:0;
}

.operations[b-h98yt39r3e]  .op-inbox-row>span:nth-child(2) {
    flex:1;
    min-width:0;
}

.operations[b-h98yt39r3e]  .op-inbox-row strong {
    font-size:11px;
    font-weight:500;
    overflow-wrap:anywhere;
}

.operations[b-h98yt39r3e]  .op-inbox-row small {
    display:block;
    color:var(--op-muted);
    font-size:9px;
    margin-top:4px;
}

.operations[b-h98yt39r3e]  .op-inbox-row>.op-badge {
    margin-left:auto;
}

.operations[b-h98yt39r3e]  .op-inbox-icon {
    width:32px;
    height:32px;
    background:#f4f3fa;
    color:#8a81bf;
    border-radius:7px;
    display:grid;
    place-items:center;
    flex-shrink:0;
}

.operations[b-h98yt39r3e]  .op-calm-state {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:11px;
    color:#8a929f;
    min-height:95px;
    font-size:11px;
}

.operations[b-h98yt39r3e]  .op-calm-state svg {
    color:#90afa1;
}

.operations[b-h98yt39r3e]  .op-device-summary {
    display:flex;
    gap:14px;
    align-items:center;
    margin-top:18px;
    color:#8c92a7;
}

.operations[b-h98yt39r3e]  .op-device-summary strong {
    display:block;
    color:var(--op-ink);
    font-size:23px;
    font-weight:500;
}

.operations[b-h98yt39r3e]  .op-device-summary span {
    font-size:10px;
    color:var(--op-muted);
}

.op-error[b-h98yt39r3e] {
    border:1px solid #e8c3bd;
    border-radius:8px;
    padding:16px;
    color:#923e2d;
    background:#fff9f7;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    font-size:12px;
    margin-bottom:20px;
}

.operations[b-h98yt39r3e]  .op-empty {
    color:var(--op-muted);
    padding:26px 0;
    margin:0;
    font-size:11px;
}

.operations[b-h98yt39r3e]  .op-bars {
    display:flex;
    flex-direction:column;
    gap:18px;
}

.operations[b-h98yt39r3e]  .op-bar-label {
    display:flex;
    justify-content:space-between;
    gap:14px;
    font-size:10px;
    margin-bottom:7px;
}

.operations[b-h98yt39r3e]  .op-bar-label span {
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.operations[b-h98yt39r3e]  .op-bar-label strong {
    white-space:nowrap;
    font-weight:500;
}

.operations[b-h98yt39r3e]  .op-bar-track {
    height:7px;
    border-radius:3px;
    background:#f0f1f7;
    overflow:hidden;
}

.operations[b-h98yt39r3e]  .op-bar-track span {
    display:block;
    height:100%;
    background:#7770d6;
    border-radius:3px;
    transition:width .25s ease;
}

.operations[b-h98yt39r3e]  .op-bar-row:nth-child(3n+2) .op-bar-track span {
    background:#47a999;
}

.operations[b-h98yt39r3e]  .op-bar-row:nth-child(3n+3) .op-bar-track span {
    background:#e1b362;
}

.operations[b-h98yt39r3e]  .op-trend,.operations[b-h98yt39r3e]  .op-columns {
    position:relative;
}

.operations[b-h98yt39r3e]  .op-trend svg {
    width:100%;
    height:220px;
    overflow:visible;
}

.operations[b-h98yt39r3e]  .op-columns svg {
    width:100%;
    height:205px;
    overflow:visible;
}

.operations[b-h98yt39r3e]  .op-chart-grid {
    stroke:#e9edf3;
    stroke-dasharray:3 4;
    fill:none;
}

.operations[b-h98yt39r3e]  .op-chart-area {
    fill:#7368d411;
}

.operations[b-h98yt39r3e]  .op-chart-line {
    stroke:#7264ce;
    stroke-width:2.5;
    fill:none;
    vector-effect:non-scaling-stroke;
}

.operations[b-h98yt39r3e]  .op-chart-previous {
    stroke:#c6bfe7;
    stroke-width:2;
    stroke-dasharray:5 5;
    fill:none;
    vector-effect:non-scaling-stroke;
}

.operations[b-h98yt39r3e]  .op-chart-point {
    fill:#7564d0;
    stroke:#fff;
    stroke-width:2;
    opacity:0;
}

.operations[b-h98yt39r3e]  .op-chart-point:hover,.operations[b-h98yt39r3e]  .op-chart-point:focus {
    opacity:1;
    outline:none;
    r:6;
}

.operations[b-h98yt39r3e]  .op-axis-text {
    fill:#9097a8;
    font-size:10px;
    font-family:"Segoe UI",sans-serif;
}

.operations[b-h98yt39r3e]  .op-column {
    fill:#66aaa5;
}

.operations[b-h98yt39r3e]  .op-column:hover,.operations[b-h98yt39r3e]  .op-column:focus {
    fill:#347f7f;
    outline:none;
}

.operations[b-h98yt39r3e]  .op-trend-legend {
    display:flex;
    gap:16px;
    align-items:center;
    font-size:9px;
    color:#8b93a2;
    margin-bottom:10px;
}

.operations[b-h98yt39r3e]  .op-trend-legend span {
    display:flex;
    align-items:center;
    gap:5px;
}

.operations[b-h98yt39r3e]  .op-trend-legend i {
    display:inline-block;
    width:14px;
    height:3px;
    border-radius:2px;
    background:#7869d1;
}

.operations[b-h98yt39r3e]  .op-trend-legend .previous {
    background:#c9c2e5;
}

.operations[b-h98yt39r3e]  .op-trend-legend small {
    margin-left:auto;
    font-size:9px;
}

.operations[b-h98yt39r3e]  .op-chart-empty {
    position:absolute;
    top:75px;
    left:60px;
    right:10px;
    text-align:center;
    font-size:11px;
    color:#8a92a3;
    padding:10px;
    background:#ffffffc9;
    pointer-events:none;
}

.operations[b-h98yt39r3e]  .op-chart-values {
    color:#7c8495;
    font-size:9px;
    margin-top:10px;
}

.operations[b-h98yt39r3e]  .op-chart-values summary {
    cursor:pointer;
    width:max-content;
}

.operations[b-h98yt39r3e]  .op-chart-values .op-table {
    max-height:260px;
    margin-top:12px;
}

.operations[b-h98yt39r3e]  .op-donut-layout {
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:center;
    padding-top:4px;
}

.operations[b-h98yt39r3e]  .op-donut {
    width:142px;
    height:142px;
    border-radius:50%;
    display:grid;
    place-items:center;
    flex-shrink:0;
}

.operations[b-h98yt39r3e]  .op-donut-center {
    border:6px solid #fff;
    width:115px;
    height:115px;
    border-radius:50%;
    background:white;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:10px;
    text-align:center;
}

.operations[b-h98yt39r3e]  .op-donut-center strong {
    font-family:"Segoe UI",sans-serif;
    font-size:19px;
    font-weight:600;
    letter-spacing:-.5px;
    line-height:1.3;
    overflow-wrap:anywhere;
    max-width:110px;
}

.operations[b-h98yt39r3e]  .op-donut-center span {
    color:var(--op-muted);
    font-size:9px;
    margin-top:5px;
}

.operations[b-h98yt39r3e]  .op-donut-legend {
    align-self:stretch;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.operations[b-h98yt39r3e]  .op-legend-item {
    display:flex;
    gap:8px;
    align-items:center;
    font-size:10px;
}

.operations[b-h98yt39r3e]  .op-legend-item i {
    width:7px;
    height:7px;
    border-radius:50%;
    flex-shrink:0;
}

.operations[b-h98yt39r3e]  .op-legend-item>span {
    display:flex;
    align-items:baseline;
    gap:8px;
    flex:1;
    min-width:0;
    overflow-wrap:anywhere;
}

.operations[b-h98yt39r3e]  .op-legend-item small {
    color:#99a0ae;
    font-size:9px;
}

.operations[b-h98yt39r3e]  .op-legend-item strong {
    margin-left:auto;
    font-weight:500;
    white-space:nowrap;
}

.op-skeleton[b-h98yt39r3e] {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.op-skeleton div[b-h98yt39r3e],.op-skeleton section[b-h98yt39r3e] {
    height:140px;
    border-radius:10px;
    background:#eceef4;
    animation:op-loading-b-h98yt39r3e 1.5s ease-in-out infinite alternate;
}

.op-skeleton section[b-h98yt39r3e] {
    grid-column:span 2;
    height:300px;
}

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

@keyframes op-loading-b-h98yt39r3e {
    to {
        opacity:.45;
    }
}

@media(min-width:1750px) {
    .op-main[b-h98yt39r3e] {
        padding:30px 36px 48px;
    }
    .operations[b-h98yt39r3e]  .op-donut-layout {
        flex-direction:row;
        align-items:center;
        gap:24px;
        padding:25px 0 20px;
    }
    .operations[b-h98yt39r3e]  .op-donut-legend {
        flex:1;
        align-self:center;
    }
}

@media(max-width:1200px) {
    .operations[b-h98yt39r3e] {
        grid-template-columns:200px minmax(0,1fr);
    }
    .op-main[b-h98yt39r3e] {
        padding:24px 22px 36px;
    }
    .op-brand[b-h98yt39r3e] {
        font-size:14px;
        padding-left:5px;
    }
    .operations[b-h98yt39r3e]  .op-overview-grid,.operations[b-h98yt39r3e]  .op-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .operations[b-h98yt39r3e]  .op-metrics {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .op-date-range[b-h98yt39r3e] {
        margin-left:0;
    }
    .operations[b-h98yt39r3e]  .op-attention {
        gap:10px;
    }
    .operations[b-h98yt39r3e]  .op-attention a {
        padding:0 10px;
    }
}

@media(max-width:760px) {
    .operations[b-h98yt39r3e] {
        grid-template-columns:minmax(0,1fr);
    }
    .op-sidebar[b-h98yt39r3e] {
        display:none;
        position:fixed;
        left:0;
        width:250px;
        box-shadow:15px 0 60px #24345225;
        top:76px;
        height:calc(100dvh - 76px);
        padding-top:16px;
    }
    .op-sidebar.open[b-h98yt39r3e] {
        display:flex;
    }
    .op-sidebar .op-brand[b-h98yt39r3e] {
        display:none;
    }
    .op-business[b-h98yt39r3e] {
        border:0;
        padding-top:0;
    }
    .operations .op-menu-button[b-h98yt39r3e] {
        display:flex;
    }
    .op-main[b-h98yt39r3e] {
        padding:18px 16px 30px;
    }
    .op-heading[b-h98yt39r3e] {
        min-height:40px;
        margin-bottom:22px;
    }
    .op-heading h1[b-h98yt39r3e] {
        font-size:22px;
    }
    .op-heading-actions[b-h98yt39r3e] {
        gap:8px;
    }
    .op-connection small[b-h98yt39r3e] {
        display:none;
    }
    .op-connection[b-h98yt39r3e] {
        font-size:10px;
    }
    .op-breadcrumb[b-h98yt39r3e] {
        font-size:10px;
        max-width:150px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
    .op-filter-top[b-h98yt39r3e] {
        gap:8px;
    }
    .op-periods[b-h98yt39r3e] {
        width:100%;
    }
    .op-periods button[b-h98yt39r3e] {
        flex:1;
    }
    .op-date-range[b-h98yt39r3e] {
        flex:1;
    }
    .op-date-range label[b-h98yt39r3e] {
        flex:1;
        min-width:0;
    }
    .op-date-range input[b-h98yt39r3e] {
        width:100%;
        font-size:10px;
        padding:5px 4px;
    }
    .op-date-range>span[b-h98yt39r3e] {
        font-size:10px;
    }
    .op-filter-top>.op-primary[b-h98yt39r3e] {
        padding:7px 10px;
        font-size:11px;
    }
    .op-filter-button[b-h98yt39r3e] {
        font-size:11px;
        padding:7px 9px;
    }
    .op-filter-button svg[b-h98yt39r3e] {
        width:16px;
    }
    .op-scope[b-h98yt39r3e] {
        font-size:9px;
        line-height:1.6;
    }
    .operations[b-h98yt39r3e]  .op-panel {
        padding:18px 16px;
    }
    .operations[b-h98yt39r3e]  .op-grid,.operations[b-h98yt39r3e]  .op-overview-grid {
        grid-template-columns:minmax(0,1fr);
        gap:14px;
    }
    .operations[b-h98yt39r3e]  .op-wide,.operations[b-h98yt39r3e]  .op-span-2 {
        grid-column:auto;
    }
    .operations[b-h98yt39r3e]  .op-metrics {
        gap:10px;
    }
    .operations[b-h98yt39r3e]  .op-metrics article {
        padding:15px 13px;
        gap:14px;
    }
    .operations[b-h98yt39r3e]  .op-metrics article.op-kpi-revenue {
        padding-top:13px;
    }
    .operations[b-h98yt39r3e]  .op-metrics article>strong {
        font-size:23px;
    }
    .operations[b-h98yt39r3e]  .op-kpi-label {
        font-size:10px;
        align-items:start;
    }
    .operations[b-h98yt39r3e]  .op-kpi-label svg {
        width:16px;
        height:16px;
    }
    .operations[b-h98yt39r3e]  .op-comparison {
        font-size:9px;
        line-height:1.9;
    }
    .operations[b-h98yt39r3e]  .op-attention {
        padding:12px;
        gap:10px;
    }
    .operations[b-h98yt39r3e]  .op-attention-title {
        width:100%;
        padding-bottom:2px;
    }
    .operations[b-h98yt39r3e]  .op-attention a {
        border:0;
        padding:0;
        width:100%;
    }
    .operations[b-h98yt39r3e]  .op-attention a>span:last-child {
        margin-left:auto;
    }
    .operations[b-h98yt39r3e]  .op-donut-layout {
        flex-direction:row;
        gap:18px;
    }
    .operations[b-h98yt39r3e]  .op-donut-legend {
        flex:1;
        align-self:center;
    }
    .operations[b-h98yt39r3e]  .op-legend-item>span {
        display:block;
    }
    .operations[b-h98yt39r3e]  .op-legend-item small {
        display:block;
        margin-top:2px;
    }
    .operations[b-h98yt39r3e]  .op-legend-item strong {
        font-size:9px;
    }
    .operations[b-h98yt39r3e]  .op-donut {
        width:128px;
        height:128px;
    }
    .operations[b-h98yt39r3e]  .op-donut-center {
        width:103px;
        height:103px;
    }
    .operations[b-h98yt39r3e]  .op-donut-center strong {
        font-size:17px;
    }
    .operations[b-h98yt39r3e]  .op-request {
        flex-wrap:wrap;
        gap:10px;
    }
    .op-skeleton[b-h98yt39r3e] {
        grid-template-columns:repeat(2,1fr);
    }
    .operations[b-h98yt39r3e]  .op-search {
        flex:1;
    }
    .operations[b-h98yt39r3e]  .op-search input {
        width:100%;
    }
}

@media(prefers-reduced-motion:reduce) {
    .op-skeleton div[b-h98yt39r3e],.op-skeleton section[b-h98yt39r3e] {
        animation:none;
    }
    .operations[b-h98yt39r3e]  .op-bar-track span,.op-nav a[b-h98yt39r3e] {
        transition:none;
    }
}

.operations[b-h98yt39r3e]  .op-metrics-three {
    grid-template-columns:repeat(3,minmax(0,1fr));
}

@media(max-width:760px) {
    .operations[b-h98yt39r3e]  .op-metrics-three {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
