@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';

/* /Components/AtlasLogo.razor.rz.scp.css */
.atlas-logo[b-st92007xcn] {
    display: inline-flex;
    align-items: center;
    gap: 0.42em;
    user-select: none;
}

.atlas-word[b-st92007xcn] {
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--ink-950);
    line-height: 1;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.atlas-logo.on-dark .atlas-word[b-st92007xcn] {
    color: #FFFFFF;
}
/* /Components/Layout/BlankLayout.razor.rz.scp.css */
.blank-main[b-6nyg2pgerr] {
    /* The ONE vertical-centering owner for anonymous pages. svh = the small (URL-bar-visible)
       viewport on iOS, so the centre never jumps or clips when Safari's toolbar collapses. */
    min-height: 100vh;
    min-height: 100svh;
    background: var(--canvas);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-qp3wg03dcj] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-qp3wg03dcj] {
    flex: 1;
    background: var(--canvas);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ---------- Top app bar (one bar, both breakpoints) ---------- */
.topbar[b-qp3wg03dcj] {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 40px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    /* Above the loading veil (40) so the topbar's dropdown menus (language / profile), which drop
       down into the veil's region, stay visible and usable while a page is loading. */
    z-index: 45;
}

/* Actions always hug the right, regardless of what sits on the left (brand/hamburger on mobile,
   nothing on desktop). */
.topbar-actions[b-qp3wg03dcj] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Hamburger + inline brand: mobile only (revealed in the media query below). */
.nav-toggle[b-qp3wg03dcj] {
    display: none;
    width: 40px;
    height: 40px;
    margin-left: -8px;
    padding: 0;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: var(--ink-600);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .14s ease;
}

    .nav-toggle:hover[b-qp3wg03dcj] { background: var(--line-soft); }
    .nav-toggle:active[b-qp3wg03dcj] { background: var(--line); }
    .nav-toggle svg[b-qp3wg03dcj] { width: 22px; height: 22px; }

.topbar-brand[b-qp3wg03dcj] {
    display: none;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 0;
}

.env-chip-light[b-qp3wg03dcj] {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--atlas-red);
    background: var(--atlas-red-soft);
    border: 1px solid rgba(232, 38, 29, 0.22);
    border-radius: 5px;
    padding: 2px 6px;
    flex-shrink: 0;
}

.topbar-divider[b-qp3wg03dcj] {
    width: 1px;
    height: 22px;
    background: var(--line);
}

.profile-trigger[b-qp3wg03dcj] {
    gap: 8px;
}

.profile-dd .dd-menu form[b-qp3wg03dcj] {
    margin: 0;
}

.user-dot[b-qp3wg03dcj] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--atlas-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-mail[b-qp3wg03dcj] {
    color: var(--ink-600);
    font-size: 12.5px;
    font-weight: 500;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- Sidebar ---------- */
.sidebar[b-qp3wg03dcj] {
    background: #131316;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.content[b-qp3wg03dcj] {
    padding: 34px 40px 72px;
    /* Linear-style centered content column: capped and centred in the space right of the sidebar,
       so wide monitors get balanced margins instead of everything hugging the sidebar. 1800px fits
       the widest data table (~1700px natural width) + the 2×40px padding, so on large screens every
       column is fully visible without internal scrolling. */
    max-width: 1800px;
    width: 100%;
    margin-inline: auto;
}

/* Hidden state-holder for the CSS-only drawer (toggled by the hamburger/scrim <label>s). */
.nav-cb[b-qp3wg03dcj] {
    display: none;
}

/* Drawer scrim: dim overlay behind the open mobile drawer. Inert on desktop. */
.nav-scrim[b-qp3wg03dcj] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.44);
    opacity: 0;
    visibility: hidden;
    z-index: 46; /* above the raised topbar (45) so an open drawer dims it too */
    transition: opacity .22s ease, visibility 0s linear .22s;
}

/* ---------- Desktop (>= 901px): sidebar left, no hamburger ---------- */
@media (min-width: 901px) {
    .page[b-qp3wg03dcj] {
        flex-direction: row;
    }

    .sidebar[b-qp3wg03dcj] {
        width: 248px;
        flex-shrink: 0;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow-y: auto;
    }
}

/* ---------- Mobile / tablet (<= 900px): single top bar + slide-in drawer ---------- */
@media (max-width: 900.98px) {
    .nav-toggle[b-qp3wg03dcj],
    .topbar-brand[b-qp3wg03dcj] {
        display: flex;
    }

    .topbar[b-qp3wg03dcj] {
        padding: 0 16px;
    }

    /* Sidebar becomes an off-canvas drawer, hidden until the hamburger opens it. */
    .sidebar[b-qp3wg03dcj] {
        position: fixed;
        top: 0;
        left: 0;
        width: 272px;
        max-width: 84vw;
        height: 100dvh;
        z-index: 47; /* above the scrim (46) and the raised topbar (45) */
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform .24s cubic-bezier(.4, 0, .2, 1);
        box-shadow: none;
    }

    .nav-cb:checked ~ .sidebar[b-qp3wg03dcj] {
        transform: translateX(0);
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.42);
    }

    .nav-scrim[b-qp3wg03dcj] {
        display: block;
        cursor: default;
    }

    .nav-cb:checked ~ .nav-scrim[b-qp3wg03dcj] {
        opacity: 1;
        visibility: visible;
        transition: opacity .22s ease;
    }

    .content[b-qp3wg03dcj] {
        padding: 22px 16px 56px;
    }

    /* On a phone the profile trigger collapses to just the avatar — email and caret move into the
       menu that opens on tap. */
    .user-mail[b-qp3wg03dcj],
    .dd-caret[b-qp3wg03dcj] {
        display: none;
    }

    .profile-trigger[b-qp3wg03dcj] {
        padding: 0 3px;
        gap: 0;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.brand[b-i0slttaahn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
}

.env-chip[b-i0slttaahn] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: #FFB4AF;
    background: rgba(232, 38, 29, 0.16);
    border: 1px solid rgba(232, 38, 29, 0.35);
    border-radius: 5px;
    padding: 2px 7px;
}

/* The nav fills the sidebar/drawer at every breakpoint; show/hide on mobile is the parent
   drawer's slide transform, not a display toggle. */
.nav-scrollable[b-i0slttaahn] {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
}

.nav-items[b-i0slttaahn] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 10px;
}

[b-i0slttaahn] .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    border-radius: 8px;
    color: #9BA1AB;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.003em;
    text-decoration: none;
    transition: background .13s ease, color .13s ease;
}

    [b-i0slttaahn] .nav-link svg {
        width: 16.5px;
        height: 16.5px;
        flex-shrink: 0;
        opacity: 0.82;
        transition: opacity .13s ease, color .13s ease;
    }

    [b-i0slttaahn] .nav-link:hover {
        color: #E9EBEE;
        background: rgba(255, 255, 255, 0.05);
    }

        [b-i0slttaahn] .nav-link:hover svg {
            opacity: 1;
        }

    /* Active = a quiet raised chip, nothing more — no accent bars, no brand-coloured icons.
       The restraint is what reads as native/enterprise (Linear-style). */
    [b-i0slttaahn] .nav-link.active {
        color: #FFFFFF;
        font-weight: 550;
        background: rgba(255, 255, 255, 0.075);
    }

        [b-i0slttaahn] .nav-link.active svg {
            opacity: 1;
        }

/* Roomier tap targets in the mobile drawer. */
@media (max-width: 900.98px) {
    [b-i0slttaahn] .nav-link {
        padding: 11px 12px;
        font-size: 14px;
    }

    [b-i0slttaahn] .nav-link svg {
        width: 18px;
        height: 18px;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-c0g3q1ik70],
.components-reconnect-repeated-attempt-visible[b-c0g3q1ik70],
.components-reconnect-failed-visible[b-c0g3q1ik70],
.components-pause-visible[b-c0g3q1ik70],
.components-resume-failed-visible[b-c0g3q1ik70],
.components-rejoining-animation[b-c0g3q1ik70] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-retrying[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-failed[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-c0g3q1ik70] {
    display: block;
}

/* One message at a time: the retry countdown replaces the first-attempt text. */
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-first-attempt-visible[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-first-attempt-visible[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-repeated-attempt-visible[b-c0g3q1ik70],
#components-reconnect-modal.components-reconnect-failed .components-rejoining-animation[b-c0g3q1ik70] {
    display: none;
}

#components-reconnect-modal[b-c0g3q1ik70] {
    font-family: var(--font, 'Inter', 'Segoe UI', system-ui, sans-serif);
    background: var(--surface, #fff);
    width: 25rem;
    max-width: calc(100vw - 40px);
    margin: 26vh auto;
    padding: 36px 32px 30px;
    /* No border and no focus ring: the native <dialog> ships a black UA border, and Safari draws a
       black focus outline on the focused dialog — both read as an ugly dark frame. The soft shadow
       alone defines the card. */
    border: 0;
    outline: none;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(11, 11, 13, 0.22);
    opacity: 0;
    transition: display 0.4s allow-discrete, overlay 0.4s allow-discrete;
    animation: reconnect-fade-out-b-c0g3q1ik70 0.4s both;
}

    #components-reconnect-modal:focus[b-c0g3q1ik70],
    #components-reconnect-modal:focus-visible[b-c0g3q1ik70] {
        outline: none;
    }

    #components-reconnect-modal[open][b-c0g3q1ik70] {
        animation: reconnect-rise-b-c0g3q1ik70 0.9s cubic-bezier(.05, .89, .25, 1.02) 0.2s, reconnect-fade-in-b-c0g3q1ik70 0.4s ease-in-out 0.2s;
        animation-fill-mode: both;
    }

#components-reconnect-modal[b-c0g3q1ik70]::backdrop {
    background: rgba(11, 11, 13, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    animation: reconnect-fade-in-b-c0g3q1ik70 0.4s ease-in-out;
    opacity: 1;
}

@keyframes reconnect-rise-b-c0g3q1ik70 {
    0% {
        transform: translateY(22px) scale(0.97);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes reconnect-fade-in-b-c0g3q1ik70 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes reconnect-fade-out-b-c0g3q1ik70 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-c0g3q1ik70] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#components-reconnect-modal p[b-c0g3q1ik70] {
    margin: 0;
    text-align: center;
}

[b-c0g3q1ik70] .reconnect-title {
    display: block;
    font-size: 16.5px;
    font-weight: 650;
    letter-spacing: -0.015em;
    color: var(--ink-950, #0B0B0D);
    margin-bottom: 5px;
}

[b-c0g3q1ik70] .reconnect-sub {
    display: block;
    font-size: 13.5px;
    color: var(--ink-500, #6E727A);
    font-variant-numeric: tabular-nums;
}

#components-reconnect-modal button[b-c0g3q1ik70] {
    border: 1px solid var(--ink-900, #141417);
    background: var(--ink-900, #141417);
    color: #fff;
    padding: 9px 28px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 550;
    font-family: inherit;
    cursor: pointer;
    transition: background .13s ease;
}

    #components-reconnect-modal button:hover[b-c0g3q1ik70] {
        background: var(--ink-950, #0B0B0D);
    }

    #components-reconnect-modal button:active[b-c0g3q1ik70] {
        background: var(--ink-800, #1D1D21);
    }
/* /Components/Pages/Upute.razor.rz.scp.css */
/* ATLAS priručnik — uses the app's own tokens (Inter, ink ramp, --atlas-red, hairlines) so it
   reads as a native part of the product, not a bolted-on document. */

.guide[b-j3z6teaytt] {
    max-width: 1000px;
    margin: 0 auto;
}

/* ---------- header ---------- */
.guide-head[b-j3z6teaytt] {
    padding: 6px 0 26px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
}

.g-eyebrow[b-j3z6teaytt] {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--atlas-red);
    margin-bottom: 14px;
}

.g-title[b-j3z6teaytt] {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
    color: var(--ink-950);
    margin: 0 0 12px;
    max-width: 22ch;
    text-wrap: balance;
}

.g-lead[b-j3z6teaytt] {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-500);
    max-width: 62ch;
    margin: 0;
}

.g-tags[b-j3z6teaytt] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

    .g-tags span[b-j3z6teaytt] {
        font-size: 12.5px;
        color: var(--ink-600);
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 5px 12px;
    }

/* ---------- layout: sticky TOC + reading column ---------- */
.guide-grid[b-j3z6teaytt] {
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.upute-toc[b-j3z6teaytt] {
    position: sticky;
    top: 18px;
    align-self: start;
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    padding-top: 24px;
}

.toc-h[b-j3z6teaytt] {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-400);
    margin: 0 0 12px;
    padding-left: 13px;
}

.upute-toc ol[b-j3z6teaytt] {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* The active item is marked by its INDEX becoming a filled chip (echoing the section-header
   numbers) plus a heavier, darker label — no accent rail, no tinted card. */
.upute-toc a[b-j3z6teaytt] {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: var(--ink-500);
    font-size: 13.5px;
    line-height: 1.3;
    padding: 5px 8px;
    transition: color .13s ease;
}

    .upute-toc a:hover[b-j3z6teaytt] { color: var(--ink-900); }
    .upute-toc a:hover .n[b-j3z6teaytt] { color: var(--ink-700); }

    .upute-toc a.active[b-j3z6teaytt] {
        color: var(--ink-950);
        font-weight: 600;
    }

    .upute-toc a .n[b-j3z6teaytt] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 21px;
        height: 21px;
        flex: none;
        border-radius: 6px;
        font-size: 11.5px;
        font-weight: 600;
        font-variant-numeric: tabular-nums;
        color: var(--ink-400);
        background: transparent;
        transition: color .13s ease, background .13s ease;
    }

    .upute-toc a.active .n[b-j3z6teaytt] {
        background: var(--atlas-red);
        color: #fff;
    }

/* ---------- body ---------- */
.guide-body[b-j3z6teaytt] {
    min-width: 0;
    padding-bottom: 80px;
    color: var(--ink-800);
    font-size: 15.5px;
    line-height: 1.62;
}

.g-sec[b-j3z6teaytt] {
    scroll-margin-top: 74px; /* clears the sticky topbar when jumped to from the contents */
    padding: 34px 0 4px;
    border-top: 1px solid var(--line-soft);
}

    .g-sec:first-child[b-j3z6teaytt] {
        border-top: none;
        padding-top: 12px;
    }

.g-num[b-j3z6teaytt] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #fff;
    background: var(--ink-900);
    border-radius: 6px;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

    .g-num.hot[b-j3z6teaytt] { background: var(--atlas-red); }

.guide-body h2[b-j3z6teaytt] {
    font-size: clamp(21px, 3vw, 27px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink-950);
    margin: 2px 0 10px;
    text-wrap: balance;
}

.guide-body h3[b-j3z6teaytt] {
    font-size: 17.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink-900);
    margin: 30px 0 8px;
}

.guide-body h4[b-j3z6teaytt] {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-700);
    margin: 20px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guide-body p[b-j3z6teaytt] {
    max-width: 68ch;
    margin: 0 0 13px;
}

.g-lead2[b-j3z6teaytt] {
    font-size: 16.5px;
    color: var(--ink-500);
    max-width: 66ch;
}

.guide-body strong[b-j3z6teaytt] { font-weight: 650; color: var(--ink-900); }
.guide-body em[b-j3z6teaytt] { color: var(--ink-700); }

.guide-body a[b-j3z6teaytt] {
    color: var(--atlas-red);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--atlas-red) 35%, transparent);
}

.guide-body ul[b-j3z6teaytt], .guide-body ol.plain-list[b-j3z6teaytt] {
    max-width: 68ch;
    padding-left: 20px;
    margin: 8px 0 14px;
}

    .guide-body ul li[b-j3z6teaytt], .guide-body ol.plain-list li[b-j3z6teaytt] { margin: 5px 0; }

.g-code[b-j3z6teaytt] {
    font-family: var(--mono, ui-monospace, "Cascadia Code", Consolas, monospace);
    font-size: 0.86em;
    background: var(--line-soft);
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 1px 6px;
    color: var(--ink-900);
    white-space: nowrap;
}

/* ---------- numbered steps ---------- */
.steps[b-j3z6teaytt] {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 16px 0;
    max-width: 70ch;
}

    .steps > li[b-j3z6teaytt] {
        counter-increment: step;
        position: relative;
        padding: 13px 16px 13px 54px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        margin: 0 0 9px;
        box-shadow: var(--shadow-sm);
    }

        .steps > li[b-j3z6teaytt]::before {
            content: counter(step);
            position: absolute;
            left: 13px;
            top: 12px;
            width: 27px;
            height: 27px;
            border-radius: 7px;
            background: var(--ink-900);
            color: #fff;
            font-weight: 700;
            font-size: 13.5px;
            display: grid;
            place-items: center;
            font-variant-numeric: tabular-nums;
        }

        .steps > li strong[b-j3z6teaytt] { display: block; margin-bottom: 1px; color: var(--ink-950); }

/* ---------- callouts (no emoji — a hairline accent + uppercase kicker) ---------- */
/* Neutral hairline card; the type (tip/warn/note/key) shows ONLY in a small label chip, never as a
   coloured rail or a tinted background. */
.call[b-j3z6teaytt] {
    margin: 18px 0;
    padding: 14px 16px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    max-width: 70ch;
    font-size: 14.5px;
    line-height: 1.55;
}

    .call .k[b-j3z6teaytt] {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        padding: 3px 9px;
        border-radius: 6px;
        margin-bottom: 9px;
        color: var(--ink-600);
        background: var(--line-soft);
    }

    .call p[b-j3z6teaytt] { margin: 0; max-width: none; }
    .call p + p[b-j3z6teaytt] { margin-top: 6px; }

    .call.tip .k[b-j3z6teaytt] { color: var(--success); background: var(--success-soft); }
    .call.warn .k[b-j3z6teaytt] { color: var(--warning); background: var(--warning-soft); }
    .call.note .k[b-j3z6teaytt] { color: var(--info); background: var(--info-soft); }
    .call.key .k[b-j3z6teaytt] { color: var(--atlas-red); background: var(--atlas-red-soft); }

/* ---------- tables ---------- */
.g-tbl[b-j3z6teaytt] {
    overflow-x: auto;
    margin: 16px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

    .g-tbl table[b-j3z6teaytt] {
        border-collapse: collapse;
        width: 100%;
        font-size: 14px;
    }

    .g-tbl th[b-j3z6teaytt], .g-tbl td[b-j3z6teaytt] {
        text-align: left;
        padding: 9px 14px;
        border-bottom: 1px solid var(--line-soft);
        vertical-align: top;
    }

    .g-tbl th[b-j3z6teaytt] {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--ink-400);
        font-weight: 700;
        background: var(--line-soft);
        white-space: nowrap;
    }

    .g-tbl tbody tr:last-child td[b-j3z6teaytt] { border-bottom: none; }
    .g-tbl .num[b-j3z6teaytt] { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- pins, flow, misc ---------- */
.pin[b-j3z6teaytt] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--ink-500);
    background: var(--line-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 12px;
    margin: 4px 0 6px;
}

    .pin b[b-j3z6teaytt] { color: var(--atlas-red); font-weight: 650; }

.g-flow[b-j3z6teaytt] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

    .g-flow .node[b-j3z6teaytt] {
        flex: 1 1 128px;
        min-width: 120px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        padding: 11px 13px;
        box-shadow: var(--shadow-sm);
    }

        .g-flow .node .s[b-j3z6teaytt] { font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; color: var(--atlas-red); }
        .g-flow .node .t[b-j3z6teaytt] { font-weight: 650; font-size: 14px; margin-top: 3px; color: var(--ink-900); }
        .g-flow .node .d[b-j3z6teaytt] { font-size: 12.5px; color: var(--ink-500); margin-top: 2px; }

.to-top[b-j3z6teaytt] {
    display: inline-block;
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--ink-400);
    text-decoration: none;
    border: none;
}

    .to-top:hover[b-j3z6teaytt] { color: var(--atlas-red); }

.g-foot[b-j3z6teaytt] {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--ink-400);
    font-size: 13px;
    max-width: 70ch;
}

.star[b-j3z6teaytt] { color: var(--atlas-red); font-weight: 700; }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
    .guide-grid[b-j3z6teaytt] { grid-template-columns: 1fr; gap: 0; }

    .upute-toc[b-j3z6teaytt] {
        position: static;
        max-height: none;
        overflow: visible;
        padding: 0 0 8px;
        margin-bottom: 16px;
        border-bottom: 1px solid var(--line);
    }
}
/* /Components/Shared/HelpTip.razor.rz.scp.css */
.help-tip[b-goiu9w5upd] {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    vertical-align: middle;
}

.help-tip-icon[b-goiu9w5upd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c7ccd1;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    font-family: system-ui, sans-serif;
    cursor: pointer;
    transition: background 0.12s ease, transform 0.12s ease;
    text-transform: none;
    letter-spacing: normal;
}

.help-tip-icon:hover[b-goiu9w5upd],
.help-tip-icon:focus-visible[b-goiu9w5upd] {
    background: #e11d2a;
    transform: scale(1.08);
    outline: none;
}
/* /Components/Shared/LanguageSelector.razor.rz.scp.css */
/* Shared dropdown chrome lives in app.css (.dd*). Here: the mobile compaction — on phones the
   language control is just the globe icon, the current-code label and caret drop away. */
@media (max-width: 900.98px) {
    .dd-label[b-w7732lfi52],
    .dd-caret[b-w7732lfi52] {
        display: none;
    }

    .dd-trigger[b-w7732lfi52] {
        padding: 0 6px;
        gap: 0;
    }
}
