
/* ----- Avatar -----*/
.avatar-btn {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
}

/* ---------- Header polish ---------- */
.ez-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
    min-width: 260px;
}

    .ez-brand img {
        height: 40px;
        width: auto;
        display: block;
    }

.ez-brand-title {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}

    .ez-brand-title .title {
        font-weight: 800;
        font-size: 22px;
        letter-spacing: .2px;
        margin: 0;
    }

    .ez-brand-title .sub {
        font-size: 12px;
        color: #6c757d;
    }

.ez-pill {
    border-radius: 9999px !important;
    padding: .35rem .75rem !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 1px 0 rgba(0,0,0,.03);
    white-space: nowrap;
}

.ez-avatar-btn {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

/* dropdown click/stack safety */
.dropdown-menu {
    z-index: 3000;
}

/* Keep right-side cluster tight */
.ez-right-cluster {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-left: auto;
}

@@media (max-width: 991.98px) {
    .ez-brand {
        min-width: 0;
    }

    .ez-right-cluster {
        gap: .25rem;
    }
}

.onboard {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.tiles {
    display: grid;
    gap: 12px;
}

.tile {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: background .15s ease, border-color .15s ease;
}

    .tile:hover {
        background: #f8f9fb;
        border-color: #d7d7d7;
    }

.tile--recommended {
    border-color: rgba(13, 110, 253, .35);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .08);
}

.helper {
    margin-top: 1rem;
    color: #444;
}

.which {
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
}

    .which summary {
        cursor: pointer;
        list-style: none;
    }

        .which summary::-webkit-details-marker {
            display: none;
        }

.which__summary {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.which__arrow {
    font-size: 1.1rem;
    transition: transform .2s ease;
    animation: nudge 1.8s ease-in-out infinite;
}

details[open] .which__arrow {
    transform: rotate(90deg);
    animation: none;
}

.which__hint {
    margin-left: auto;
    font-size: .85rem;
    color: #6c757d;
}

.which__body {
    margin-top: .75rem;
}

@@keyframes nudge {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

.auth-links {
    margin-top: 1rem;
    font-size: .95rem;
    color: #666;
    text-align: center;
}
:root {
    --zs-bg: #0f172a;
    --zs-fg: #e2e8f0;
    --zs-accent: #22c55e;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem
}

.zs-header {
    background: var(--zs-bg);
    color: var(--zs-fg);
}

    .zs-header .brand {
        color: var(--zs-fg);
        text-decoration: none;
        font-weight: 700;
        margin-right: 1rem
    }

    .zs-header nav a {
        color: var(--zs-fg);
        text-decoration: none;
        margin-right: .75rem
    }

        .zs-header nav a.active {
            color: var(--zs-accent)
        }

.zs-footer {
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    color: #666
}

/* ---------- Page-scoped responsiveness + overflow defense ---------- */
.ua-wrap, .ua-wrap * {
    min-width: 0;
}

.ua-metric {
    font-variant-numeric: tabular-nums;
}

@@media (max-width: 575.98px) {
    .ua-metric {
        font-size: 2rem !important;
    }
}

/* ---------- Filters: keep Include PageViews usable ---------- */
.ua-incpv {
    min-width: 240px; /* prevents the vertical letter stacking */
}

@@media (max-width: 991.98px) {
    .ua-incpv {
        min-width: 0;
    }
    /* allow full-width stacking on smaller screens */
}

/* ---------- Table: no horizontal scroll, fixed layout, clean headers ---------- */
.ua-table {
    width: 100%;
    table-layout: fixed;
}

    .ua-table th, .ua-table td {
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }

    /* IMPORTANT: stop header word-break/letter stacking */
    .ua-table thead th {
        white-space: nowrap; /* keep on one line */
    }

/* Feature column: wrap and clamp so it stays compact */
.ua-col-feature {
    width: 34%;
}

.ua-feature {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* Compact numeric columns */
.ua-col-total {
    width: 8%;
}

.ua-col-success {
    width: 8%;
}

.ua-col-fail {
    width: 8%;
}

.ua-col-pct {
    width: 10%;
}

/* Optional columns on larger screens */
.ua-col-product {
    width: 12%;
}

.ua-col-biz {
    width: 8%;
}

.ua-col-users {
    width: 7%;
}

.ua-col-lastseen {
    width: 13%;
}

@@media (max-width: 991.98px) {
    .ua-col-lastseen {
        display: none !important;
    }

    .ua-col-feature {
        width: 44%;
    }

    .ua-col-product {
        width: 14%;
    }
}

@@media (max-width: 767.98px) {
    .ua-col-product, .ua-col-biz, .ua-col-users {
        display: none !important;
    }

    .ua-col-feature {
        width: 60%;
    }

    .ua-col-total {
        width: 12%;
    }

    .ua-col-success {
        width: 12%;
    }

    .ua-col-fail {
        width: 12%;
    }

    .ua-col-pct {
        width: 16%;
    }
}

@@media (max-width: 575.98px) {
    .ua-table th, .ua-table td {
        padding-top: .45rem;
        padding-bottom: .45rem;
    }

    .ua-col-feature {
        width: 64%;
    }
}

/* Scoped layout polish */
.mk-kpi {
    font-variant-numeric: tabular-nums;
}

    .mk-kpi .val {
        font-size: clamp(1.6rem, 3.0vw, 2.2rem);
        font-weight: 800;
        line-height: 1.05;
    }

    .mk-kpi .lbl {
        color: rgba(0,0,0,.62);
    }

.mk-pill {
    border-radius: 9999px;
    padding: .35rem .75rem;
    background: rgba(13,110,253,.08);
    color: #0d6efd;
    font-weight: 600;
    display: inline-flex;
    gap: .35rem;
    align-items: center;
}

.mk-muted {
    color: rgba(0,0,0,.62);
}

.mk-table th {
    white-space: nowrap;
}

.mk-key {
    font-weight: 600;
}
/* Intuit-compliant height; keep aspect ratio */
.qb-connect-btn {
    height: 44px;
    width: auto;
    display: block;
}

/* Make sure the link-style button doesn't add weird focus padding */
.qb-connect-wrap {
    line-height: 0;
    text-decoration: none;
}

    /* Optional: keep a nice visible focus ring for keyboard users */
    .qb-connect-wrap:focus-visible {
        outline: 2px solid currentColor;
        outline-offset: 4px;
        border-radius: 6px;
    }
/* Scoped page polish only */
.qbo-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 2.25rem 1rem 3rem;
}

.qbo-hero {
    text-align: center;
    margin: 1.25rem auto 1.75rem;
}

.qbo-title {
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: .5rem;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.qbo-sub {
    color: rgba(0,0,0,.62);
    font-size: 1.05rem;
    max-width: 70ch;
    margin: 0 auto;
}

.qbo-card {
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    padding: 1.25rem;
}

.qbo-actions .btn {
    border-radius: 10px;
    padding: .75rem 1rem;
    font-weight: 600;
}

.qbo-muted {
    color: rgba(0,0,0,.62);
}

.qbo-support {
    border-left: 3px solid rgba(0,0,0,.12);
    padding-left: 1rem;
}

:root {
    --admin-sidebar-width: 300px;
    --admin-sidebar-collapsed: 72px;
}

/* Desktop sidebar sizing + collapse-to-icons */
@@media (min-width: 992px) {
    #adminSidebar {
        width: var(--admin-sidebar-width);
        transition: width .15s ease;
        overflow: hidden;
        position: sticky;
        top: var(--nav-h);
        height: calc(100vh - var(--nav-h));
        overflow-y: auto;
        border-right: 1px solid #e5e7eb;
        background: #fff;
    }

    body.admin-collapsed #adminSidebar {
        width: var(--admin-sidebar-collapsed);
    }

    body.admin-collapsed .zs-sidenav-text,
    body.admin-collapsed .zs-sidenav-section summary span,
    body.admin-collapsed .zs-sidenav-section-title {
        display: none !important;
    }

    body.admin-collapsed .zs-sidenav-item {
        justify-content: center;
    }
    /* hide the mobile header on desktop */
    .admin-mobile-head {
        display: none !important;
    }
}

/* Mobile: sidebar becomes top, full width, no sticky width constraints */
@@media (max-width: 991.98px) {
    #adminSidebar {
        width: 100% !important;
        position: static !important;
        height: auto !important;
        overflow: visible !important;
        border-right: none !important;
        background: #fff;
    }
}

/* Content column defensive */
#adminContent {
    min-width: 0;
}

.footer-partner {
    opacity: 0.85;
}

@@media (max-width: 767.98px) {
    .footer-partner {
        margin-top: 0.25rem;
    }
}

.menu {
    list-style: none;
    margin: 0;
    padding: .5rem 0;
    display: flex;
    gap: .75rem
}

    .menu a {
        padding: .25rem .5rem;
        border-radius: .5rem
    }

        .menu a:hover {
            background: #f2f2f2
        }


.inline-style-2f318f50 {
    z-index: 1020;
}

.inline-style-eca87627 {
    border-radius: 14px;
}

.inline-style-a9efa544 {
    white-space: nowrap;
}

.inline-style-95680342 {
    color: rgba(0,0,0,.70);
}

.inline-style-9362c510 {
    letter-spacing: .08em;
}

.inline-style-bc5a07f5 {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.inline-style-a50c67fc {
    white-space: pre-wrap;
    word-break: break-word;
}

.inline-style-213c7882 {
    max-width: 320px;
}

.inline-style-28217ba5 {
    max-width: 260px;
}

.inline-style-ffa089e0 {
    max-width: 520px;
}

.inline-style-be8da066 {
    width: 70px;
}

.inline-style-e60a90d7 {
    width: 90px;
}

.inline-style-0ff0f36a {
    width: 140px;
}

.inline-style-3b338459 {
    width: 120px;
}

.inline-style-85066813 {
    width: 180px;
}

.inline-style-8d1f4ab8 {
    max-width: 200px;
}

.inline-style-4b768a49 {
    font-size: 1.2rem;
    line-height: 1;
}

.inline-style-f9fa0734 {
    border-radius: 12px;
}

.inline-style-9489970d {
    top: calc(var(--nav-h, 64px) + 1rem);
}

.inline-style-d62cc767 {
    height: 52px;
    width: auto;
}

.inline-style-493fb5f1 {
    color: #126eb3;
}

.inline-style-0b87e9e0 {
    font-weight: 600;
}

.inline-style-423d7bb3 {
    line-height: 1.2;
}

.inline-style-32ad06c5 {
    height: 28px;
    width: auto;
    margin-right: 10px;
}

.inline-style-9e2840da {
    font-size: .72rem;
}

.inline-style-8210db19 {
    color: #126eb3;
    font-weight: 800;
}

.inline-style-310791b8 {
    letter-spacing: .5px;
}

.inline-style-12bc9891 {
    z-index: 1021;
}

.inline-style-f0b3885d {
    width: 1%;
    white-space: nowrap;
}

.inline-style-e791fcb1 {
    cursor: help;
    line-height: 1;
}

.inline-style-9a425382 {
    max-width: 72ch;
}

.inline-style-9ed99d3b {
    width: 110px;
}

.inline-style-611bf920 {
    width: 160px;
}

.inline-style-255f134a {
    width: 170px;
}

.inline-style-807e5119 {
    width: 100px;
}

.inline-style-c36b3d6a {
    width: 250px;
}

.inline-style-1b3b3079 {
    width: 80px;
}

.inline-style-c8be1ccb {
    display: none;
}

.inline-style-b434296b {
    max-width: 28rem;
}

.inline-style-881e8d7f {
    height: 0;
    padding: 0px;
    margin: 0px;
}

.inline-style-b08cade6 {
    display: @@(Model.Input.Scope ==;
}

.inline-style-69ee751e {
    max-height: 300px;
    overflow: auto;
}

.inline-style-73f9c49f {
    max-width: 520px;
}

.inline-style-62b31086 {
    cursor: help;
}

.inline-style-80ffd295 {
    width: 110px;
}

.inline-style-9bec53c9 {
    width: 90px;
}

.inline-style-eed5c259 {
    width: 280px;
}

.inline-style-9fe45cd8 {
    width: 120px;
}