/* _content/AIChatBox.Web/Components/Chat/ChatPanel.razor.rz.scp.css */
.acb-chat-panel[b-m6olrxuzi5] {
    --primary: #1976d2;
    --primary-dark: #0d47a1;
    --surface: #fff;
    --surface-muted: #f6f8fb;
    --text: #172033;
    --text-muted: #667085;
    --border: #d8e2ef;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 1.25rem 3rem rgb(23 32 51 / 8%);
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.acb-chat-panel__messages[b-m6olrxuzi5] {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    min-height: 24rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #f6f8fb;
    padding: 1.5rem;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

.acb-chat-panel__messages--active[b-m6olrxuzi5] {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
    justify-content: flex-start;
}

.acb-chat-panel__empty[b-m6olrxuzi5] {
    max-width: 32rem;
    text-align: center;
    width: 100%;
}

.acb-chat-panel__empty-icon[b-m6olrxuzi5] {
    align-items: center;
    background: #eaf3ff;
    border-radius: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    font-size: 1.35rem;
    height: 3.5rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    width: 3.5rem;
}

.acb-chat-panel__empty h2[b-m6olrxuzi5] {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.acb-chat-panel__empty p[b-m6olrxuzi5] {
    color: var(--text-muted);
    margin-bottom: 0;
}

.acb-chat-panel__suggestion-hint[b-m6olrxuzi5] {
    font-size: 0.82rem;
    margin-top: 0.65rem;
}

.acb-chat-panel__suggestions[b-m6olrxuzi5] {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.15rem;
    width: 100%;
}

.acb-chat-panel__suggestions button[b-m6olrxuzi5] {
    background: #fff;
    border: 1px solid #b9d5f3;
    border-radius: 0.7rem;
    color: var(--primary-dark);
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 3rem;
    overflow-wrap: anywhere;
    padding: 0.65rem 0.75rem;
    text-align: left;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    width: 100%;
}

.acb-chat-panel__suggestions button:hover:not(:disabled)[b-m6olrxuzi5] {
    background: #eaf3ff;
    border-color: var(--primary);
}

.acb-chat-panel__suggestions button:focus-visible[b-m6olrxuzi5] {
    outline: 3px solid rgb(25 118 210 / 22%);
    outline-offset: 2px;
}

.acb-chat-panel__suggestions button:disabled[b-m6olrxuzi5] {
    background: #f1f4f8;
    border-color: #d8e2ef;
    color: #8a94a6;
    cursor: not-allowed;
}

.acb-chat-message[b-m6olrxuzi5] {
    border-radius: 0.9rem;
    max-width: min(44rem, 88%);
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 0.8rem 0.95rem;
}

.acb-chat-message p[b-m6olrxuzi5] {
    margin: 0;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.acb-chat-message--user[b-m6olrxuzi5] {
    align-self: flex-end;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0.35rem 0.9rem rgb(25 118 210 / 14%);
}

.acb-chat-message--assistant[b-m6olrxuzi5] {
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 0.2rem 0.65rem rgb(23 32 51 / 5%);
    width: min(48rem, 96%);
}

.acb-chat-message__meta[b-m6olrxuzi5] {
    align-items: center;
    display: flex;
    font-size: 0.75rem;
    gap: 0.65rem;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.acb-chat-message__meta span[b-m6olrxuzi5] {
    opacity: 0.72;
}

.acb-chat-message__source[b-m6olrxuzi5] {
    background: #f6f8fb;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    margin-top: 0.65rem;
    padding: 0.18rem 0.45rem;
}

.acb-chat-panel__typing[b-m6olrxuzi5] {
    align-items: center;
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    display: inline-flex;
    gap: 0.3rem;
    padding: 0.75rem 0.9rem;
}

.acb-chat-panel__typing > span:not(.visually-hidden)[b-m6olrxuzi5] {
    animation: acb-typing-pulse-b-m6olrxuzi5 1.2s infinite ease-in-out;
    background: #8b93a7;
    border-radius: 50%;
    height: 0.4rem;
    width: 0.4rem;
}

.acb-chat-panel__typing > span:nth-child(2)[b-m6olrxuzi5] {
    animation-delay: 0.15s;
}

.acb-chat-panel__typing > span:nth-child(3)[b-m6olrxuzi5] {
    animation-delay: 0.3s;
}

.acb-chat-panel__typing-label[b-m6olrxuzi5] {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.2rem;
}

.acb-chat-panel__error[b-m6olrxuzi5] {
    align-items: center;
    background: #fff4f4;
    border-bottom: 1px solid #f1b8b8;
    border-top: 1px solid #f1b8b8;
    color: #b42318;
    display: flex;
    font-size: 0.88rem;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.acb-chat-panel__error button[b-m6olrxuzi5] {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font-size: 1.25rem;
    min-height: 2.25rem;
    min-width: 2.25rem;
}

.acb-chat-composer[b-m6olrxuzi5] {
    background: #fff;
    padding: 0.9rem 1rem 1rem;
}

.acb-chat-composer label[b-m6olrxuzi5] {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.acb-chat-composer__controls[b-m6olrxuzi5] {
    align-items: flex-end;
    display: flex;
    gap: 0.7rem;
}

.acb-chat-composer textarea[b-m6olrxuzi5] {
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    color: var(--text);
    flex: 1;
    line-height: 1.45;
    min-height: 4.25rem;
    padding: 0.75rem 0.9rem;
    resize: none;
}

.acb-chat-composer textarea[b-m6olrxuzi5]::placeholder {
    color: #7b8496;
    opacity: 1;
}

.acb-chat-composer textarea:focus[b-m6olrxuzi5] {
    background: var(--surface);
    border-color: var(--primary);
    outline: 3px solid rgb(25 118 210 / 14%);
}

.acb-chat-composer .button--primary[b-m6olrxuzi5] {
    background: var(--primary);
    color: #fff;
    min-height: 2.85rem;
}

.acb-chat-composer .button--primary:not(:disabled):hover[b-m6olrxuzi5] {
    background: var(--primary-dark);
}

.acb-chat-composer .button--primary:focus-visible[b-m6olrxuzi5] {
    outline: 3px solid rgb(25 118 210 / 24%);
    outline-offset: 2px;
}

.acb-chat-composer .button--primary:disabled[b-m6olrxuzi5] {
    background: #a9b8ca;
    color: #f8fafc;
    opacity: 1;
}

.acb-chat-composer p[b-m6olrxuzi5] {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin: 0.45rem 0 0;
}

.acb-chat-panel--compact[b-m6olrxuzi5] {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.acb-chat-panel--compact .acb-chat-panel__messages[b-m6olrxuzi5] {
    min-height: 0;
    padding: 1rem 0.9rem;
}

.acb-chat-panel--compact .acb-chat-message[b-m6olrxuzi5] {
    max-width: 94%;
}

.acb-chat-panel--compact .acb-chat-composer[b-m6olrxuzi5] {
    border-top: 1px solid var(--border);
    padding: 0.75rem;
}

.acb-chat-panel--compact .acb-chat-composer p[b-m6olrxuzi5] {
    display: none;
}

@keyframes acb-typing-pulse-b-m6olrxuzi5 {
    0%,
    60%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-0.18rem);
    }
}

@media (max-width: 48rem) {
    .acb-chat-panel__messages[b-m6olrxuzi5] {
        min-height: 20rem;
        padding: 1rem;
    }

    .acb-chat-message[b-m6olrxuzi5] {
        max-width: 96%;
    }

    .acb-chat-panel__suggestions[b-m6olrxuzi5] {
        grid-template-columns: minmax(0, 1fr);
    }

    .acb-chat-panel__suggestions button[b-m6olrxuzi5] {
        min-height: 2.75rem;
    }

    .acb-chat-composer__controls[b-m6olrxuzi5] {
        align-items: stretch;
        flex-direction: column;
    }

    .acb-chat-composer__controls .button[b-m6olrxuzi5] {
        width: 100%;
    }

    .acb-chat-panel--compact .acb-chat-composer__controls[b-m6olrxuzi5] {
        align-items: flex-end;
        flex-direction: row;
    }

    .acb-chat-panel--compact .acb-chat-composer__controls .button[b-m6olrxuzi5] {
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .acb-chat-panel__messages[b-m6olrxuzi5] {
        scroll-behavior: auto;
    }

    .acb-chat-panel__typing > span:not(.visually-hidden)[b-m6olrxuzi5] {
        animation: none;
    }
}

@media (max-height: 32rem) and (orientation: landscape) {
    .acb-chat-panel--compact .acb-chat-panel__messages[b-m6olrxuzi5] {
        padding: 0.65rem 0.75rem;
    }

    .acb-chat-panel--compact .acb-chat-composer[b-m6olrxuzi5] {
        padding: 0.55rem 0.65rem;
    }

    .acb-chat-panel--compact .acb-chat-composer label[b-m6olrxuzi5] {
        margin-bottom: 0.25rem;
    }

    .acb-chat-panel--compact .acb-chat-composer textarea[b-m6olrxuzi5] {
        min-height: 3.25rem;
    }
}
/* _content/AIChatBox.Web/Components/Chat/FloatingChatWidget.razor.rz.scp.css */
.acb-floating-widget[b-bpftbf8016] {
    --acb-blue: #1976d2;
    --acb-blue-dark: #0d47a1;
    --acb-blue-light: #eaf3ff;
    --acb-border: #d8e2ef;
    --acb-text: #172033;
    --acb-text-muted: #667085;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    pointer-events: none;
    position: fixed;
    right: max(1.25rem, env(safe-area-inset-right));
    z-index: 40;
}

.acb-floating-widget__launcher[b-bpftbf8016] {
    align-items: center;
    background: var(--acb-blue);
    border: 1px solid rgb(255 255 255 / 45%);
    border-radius: 50%;
    box-shadow: 0 0.75rem 1.75rem rgb(13 71 161 / 28%);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 3.75rem;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    width: 3.75rem;
}

.acb-floating-widget__launcher:hover[b-bpftbf8016] {
    background: var(--acb-blue-dark);
    box-shadow: 0 0.9rem 2rem rgb(13 71 161 / 32%);
    transform: translateY(-2px);
}

.acb-floating-widget__launcher:active[b-bpftbf8016] {
    box-shadow: 0 0.45rem 1.1rem rgb(13 71 161 / 24%);
    transform: translateY(0);
}

.acb-floating-widget__launcher:focus-visible[b-bpftbf8016] {
    outline: 3px solid rgb(25 118 210 / 32%);
    outline-offset: 3px;
}

.acb-floating-widget__launcher svg[b-bpftbf8016] {
    fill: none;
    height: 1.65rem;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 1.65rem;
}

.acb-floating-widget__launcher circle[b-bpftbf8016] {
    fill: currentColor;
    stroke: none;
}

.acb-floating-widget__panel[b-bpftbf8016] {
    animation: acb-widget-enter-b-bpftbf8016 0.16s ease-out;
    background: var(--surface);
    border: 1px solid var(--acb-border);
    border-radius: 1rem;
    box-shadow: 0 1.25rem 3.5rem rgb(23 32 51 / 20%);
    display: flex;
    flex-direction: column;
    height: min(42rem, calc(100dvh - 7rem));
    overflow: hidden;
    pointer-events: auto;
    max-height: calc(100dvh - 2.5rem);
    max-width: calc(100vw - 2.5rem);
    width: min(25rem, calc(100vw - 2.5rem));
}

.acb-floating-widget__header[b-bpftbf8016] {
    align-items: center;
    background: var(--acb-blue-dark);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    color: #fff;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    min-height: 4.75rem;
    padding: 0.8rem 0.85rem 0.8rem 1rem;
}

.acb-floating-widget__header h2[b-bpftbf8016] {
    font-size: 1rem;
    margin: 0;
}

.acb-floating-widget__eyebrow[b-bpftbf8016] {
    color: #d7e9ff;
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.acb-floating-widget__status[b-bpftbf8016] {
    align-items: center;
    color: #eaf3ff;
    display: flex;
    font-size: 0.7rem;
    gap: 0.35rem;
}

.acb-floating-widget__status > span[b-bpftbf8016] {
    background: #4ade80;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 14%);
    border-radius: 50%;
    height: 0.4rem;
    width: 0.4rem;
}

.acb-floating-widget__close[b-bpftbf8016] {
    align-items: center;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 28%);
    border-radius: 0.55rem;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    height: 2.5rem;
    justify-content: center;
    width: 2.5rem;
}

.acb-floating-widget__close:hover[b-bpftbf8016] {
    background: rgb(255 255 255 / 20%);
}

.acb-floating-widget__close:active[b-bpftbf8016] {
    background: rgb(255 255 255 / 14%);
}

.acb-floating-widget__close:focus-visible[b-bpftbf8016] {
    outline: 3px solid rgb(255 255 255 / 55%);
    outline-offset: 2px;
}

@keyframes acb-widget-enter-b-bpftbf8016 {
    from {
        opacity: 0;
        transform: translateY(0.5rem) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 36rem) {
    .acb-floating-widget[b-bpftbf8016] {
        bottom: max(0.5rem, env(safe-area-inset-bottom));
        left: max(0.5rem, env(safe-area-inset-left));
        right: max(0.5rem, env(safe-area-inset-right));
        top: max(0.5rem, env(safe-area-inset-top));
    }

    .acb-floating-widget__panel[b-bpftbf8016] {
        border-radius: 0.85rem;
        height: 100%;
        width: 100%;
    }

    .acb-floating-widget__launcher[b-bpftbf8016] {
        bottom: 0;
        position: absolute;
        right: 0;
    }
}

@media (max-height: 32rem) and (orientation: landscape) {
    .acb-floating-widget[b-bpftbf8016] {
        bottom: max(0.5rem, env(safe-area-inset-bottom));
    }

    .acb-floating-widget__panel[b-bpftbf8016] {
        height: calc(100dvh - 1rem);
        max-height: calc(100dvh - 1rem);
    }

    .acb-floating-widget__header[b-bpftbf8016] {
        min-height: 4rem;
        padding-bottom: 0.55rem;
        padding-top: 0.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .acb-floating-widget__launcher[b-bpftbf8016] {
        transition: none;
    }

    .acb-floating-widget__panel[b-bpftbf8016] {
        animation: none;
    }
}
/* _content/AIChatBox.Web/Components/Layout/DemoSiteLayout.razor.rz.scp.css */
.demo-layout[b-qfz356ha8s] {
    min-height: 100dvh;
    width: 100%;
}

#blazor-error-ui[b-qfz356ha8s] {
    background: #fff7ed;
    border-top: 1px solid #fdba74;
    bottom: 0;
    color: #9a3412;
    display: none;
    left: 0;
    padding: 0.6rem 2.5rem 0.7rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 30;
}

#blazor-error-ui .dismiss[b-qfz356ha8s] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
}
/* _content/AIChatBox.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.skip-link[b-pg4ryfzvan] {
    background: #17203a;
    border-radius: 0 0 0.5rem 0;
    color: #fff;
    left: 0;
    padding: 0.7rem 1rem;
    position: fixed;
    top: -5rem;
    transition: top 0.15s ease;
    z-index: 1100;
}

.skip-link:focus[b-pg4ryfzvan] {
    top: 0;
}

.site-header[b-pg4ryfzvan] {
    backdrop-filter: blur(14px);
    background: rgba(247, 248, 252, 0.92);
    border-bottom: 1px solid #e3e7f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner[b-pg4ryfzvan],
.site-footer__inner[b-pg4ryfzvan] {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 72rem;
    padding: 0 1.5rem;
}

.site-header__inner[b-pg4ryfzvan] {
    min-height: 4.5rem;
}

.brand[b-pg4ryfzvan] {
    align-items: center;
    color: #17203a;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 750;
    gap: 0.65rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand__mark[b-pg4ryfzvan] {
    align-items: center;
    background: #4f46e5;
    border-radius: 0.7rem;
    color: #fff;
    display: inline-flex;
    font-size: 0.75rem;
    height: 2rem;
    justify-content: center;
    letter-spacing: 0.03em;
    width: 2rem;
}

.main-nav[b-pg4ryfzvan] {
    align-items: center;
    display: flex;
    gap: 0.3rem;
}

.main-nav[b-pg4ryfzvan]  a {
    border-radius: 0.65rem;
    color: #59627a;
    font-size: 0.92rem;
    font-weight: 650;
    padding: 0.65rem 0.85rem;
    text-decoration: none;
}

.main-nav[b-pg4ryfzvan]  a:hover {
    background: #eceefe;
    color: #3730a3;
}

.main-nav[b-pg4ryfzvan]  a.active {
    background: #e4e7ff;
    color: #3730a3;
}

.site-main[b-pg4ryfzvan] {
    flex: 1;
    width: 100%;
}

.site-footer[b-pg4ryfzvan] {
    border-top: 1px solid #e3e7f0;
    color: #737b90;
    font-size: 0.85rem;
}

.site-footer__inner[b-pg4ryfzvan] {
    min-height: 4rem;
}

#blazor-error-ui[b-pg4ryfzvan] {
    background: #fff7ed;
    border-top: 1px solid #fdba74;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    color: #9a3412;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-pg4ryfzvan] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 40rem) {
    .site-header__inner[b-pg4ryfzvan],
    .site-footer__inner[b-pg4ryfzvan] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-header__inner[b-pg4ryfzvan] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
        padding-bottom: 0.75rem;
        padding-top: 0.75rem;
    }

    .main-nav[b-pg4ryfzvan] {
        justify-content: space-between;
        width: 100%;
    }

    .main-nav[b-pg4ryfzvan]  a {
        flex: 1;
        padding: 0.55rem 0.5rem;
        text-align: center;
    }
}
/* _content/AIChatBox.Web/Components/Layout/WidgetLayout.razor.rz.scp.css */
.widget-layout[b-t7iblgzxlg] {
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
    width: 100%;
}

#blazor-error-ui[b-t7iblgzxlg] {
    background: #fff7ed;
    border-top: 1px solid #fdba74;
    bottom: 0;
    color: #9a3412;
    display: none;
    left: 0;
    padding: 0.6rem 2.5rem 0.7rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 30;
}

#blazor-error-ui .dismiss[b-t7iblgzxlg] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
}
/* _content/AIChatBox.Web/Components/Pages/DemoSite.razor.rz.scp.css */
.demo-site[b-aryvoks1au] {
    background: #f6f7fb;
    color: #1d2740;
    min-height: 100dvh;
}

.demo-site__header[b-aryvoks1au] {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e2e6ef;
    display: flex;
    justify-content: space-between;
    min-height: 4.5rem;
    padding: 0 6vw;
    position: sticky;
    top: 0;
    z-index: 10;
}

.demo-site__brand[b-aryvoks1au] {
    color: #1d2740;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
}

.demo-site__header nav[b-aryvoks1au] {
    display: flex;
    gap: 1.25rem;
}

.demo-site__header nav a[b-aryvoks1au] {
    color: #5f687c;
    font-size: 0.88rem;
    text-decoration: none;
}

.demo-site__hero[b-aryvoks1au] {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1.2fr 0.8fr;
    margin: 0 auto;
    max-width: 76rem;
    min-height: 42rem;
    padding: 6rem 6vw;
}

.demo-site__hero h1[b-aryvoks1au] {
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    max-width: 48rem;
}

.demo-site__hero p[b-aryvoks1au] {
    color: #667087;
    font-size: 1.12rem;
    max-width: 42rem;
}

.demo-site__eyebrow[b-aryvoks1au] {
    color: #4f46e5;
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.demo-site__action[b-aryvoks1au] {
    background: #26324d;
    border-radius: 0.7rem;
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
}

.demo-site__visual[b-aryvoks1au] {
    aspect-ratio: 1;
    background: linear-gradient(145deg, #e7e9ff, #dceff2);
    border-radius: 42% 58% 52% 48%;
    position: relative;
}

.demo-site__visual span[b-aryvoks1au] {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 1rem;
    height: 22%;
    left: 24%;
    position: absolute;
    top: 23%;
    transform: rotate(-7deg);
    width: 58%;
}

.demo-site__visual span:nth-child(2)[b-aryvoks1au] {
    top: 49%;
    transform: rotate(4deg);
}

.demo-site__visual span:nth-child(3)[b-aryvoks1au] {
    height: 10%;
    top: 76%;
    width: 38%;
}

.demo-site__section[b-aryvoks1au] {
    margin: 0 auto;
    max-width: 76rem;
    padding: 7rem 6vw;
}

.demo-site__section-heading[b-aryvoks1au] {
    max-width: 42rem;
}

.demo-site__section h2[b-aryvoks1au] {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.demo-site__cards[b-aryvoks1au] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
}

.demo-site__cards article[b-aryvoks1au] {
    background: #fff;
    border: 1px solid #e2e6ef;
    border-radius: 1rem;
    min-height: 15rem;
    padding: 1.5rem;
}

.demo-site__cards article > span[b-aryvoks1au] {
    color: #9098aa;
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.demo-site__cards p[b-aryvoks1au],
.demo-site__steps span[b-aryvoks1au],
.demo-site__contact p[b-aryvoks1au] {
    color: #667087;
}

.demo-site__section--muted[b-aryvoks1au] {
    background: #e9edf4;
    max-width: none;
    padding-left: max(6vw, calc((100vw - 76rem) / 2 + 6vw));
    padding-right: max(6vw, calc((100vw - 76rem) / 2 + 6vw));
}

.demo-site__steps[b-aryvoks1au] {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
}

.demo-site__steps li[b-aryvoks1au] {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.8rem;
    display: grid;
    gap: 0.4rem;
    padding: 1.2rem;
}

.demo-site__contact[b-aryvoks1au] {
    min-height: 30rem;
}

.demo-site__footer[b-aryvoks1au] {
    background: #26324d;
    color: #fff;
    padding: 2.5rem 6vw 5rem;
}

.demo-site__footer p[b-aryvoks1au] {
    color: #d9deea;
    margin: 0.35rem 0 0;
}

@media (max-width: 48rem) {
    .demo-site__header[b-aryvoks1au] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.6rem;
        padding-bottom: 0.8rem;
        padding-top: 0.8rem;
    }

    .demo-site__header nav[b-aryvoks1au] {
        gap: 0.8rem;
        width: 100%;
    }

    .demo-site__hero[b-aryvoks1au] {
        gap: 2rem;
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 4rem;
        padding-top: 4rem;
    }

    .demo-site__visual[b-aryvoks1au] {
        margin: 0 auto;
        max-width: 22rem;
        width: 100%;
    }

    .demo-site__cards[b-aryvoks1au],
    .demo-site__steps[b-aryvoks1au] {
        grid-template-columns: 1fr;
    }

    .demo-site__section[b-aryvoks1au] {
        padding-bottom: 4.5rem;
        padding-top: 4.5rem;
    }
}
/* _content/AIChatBox.Web/Components/Pages/Widget.razor.rz.scp.css */
.widget-page[b-xt79atbq5c] {
    --primary: #1976d2;
    --primary-dark: #0d47a1;
    --surface: #fff;
    --surface-muted: #f6f8fb;
    --text: #172033;
    --text-muted: #667085;
    --border: #d8e2ef;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.widget-page__header[b-xt79atbq5c] {
    align-items: center;
    background: var(--primary-dark);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    color: #fff;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    min-height: 4.75rem;
    padding: 0.8rem 1rem;
}

.widget-page__identity[b-xt79atbq5c] {
    align-items: center;
    display: flex;
    gap: 0.7rem;
}

.widget-page__mark[b-xt79atbq5c] {
    align-items: center;
    background: rgb(255 255 255 / 14%);
    border: 1px solid rgb(255 255 255 / 28%);
    border-radius: 0.65rem;
    color: #fff;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    height: 2.25rem;
    justify-content: center;
    width: 2.25rem;
}

.widget-page h1[b-xt79atbq5c] {
    font-size: 1rem;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin: 0;
}

.widget-page__status[b-xt79atbq5c] {
    align-items: center;
    color: #eaf3ff;
    display: flex;
    font-size: 0.72rem;
    gap: 0.35rem;
}

.widget-page__status > span[b-xt79atbq5c] {
    background: #4ade80;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 14%);
    border-radius: 50%;
    height: 0.4rem;
    width: 0.4rem;
}

.widget-page__close[b-xt79atbq5c] {
    align-items: center;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: 600 1.5rem/1 system-ui, sans-serif;
    height: 2.5rem;
    justify-content: center;
    width: 2.5rem;
}

.widget-page__close:hover[b-xt79atbq5c] {
    background: rgb(255 255 255 / 20%);
    color: #fff;
}

.widget-page__close:active[b-xt79atbq5c] {
    background: rgb(255 255 255 / 14%);
}

.widget-page__close:focus-visible[b-xt79atbq5c] {
    outline: 3px solid rgb(255 255 255 / 55%);
    outline-offset: 2px;
}
