/* _content/ShangSphereAI/Components/Account/Shared/LoginModal.razor.rz.scp.css */
.login-modal-overlay[b-3mq44q9zgl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
    animation: fadeIn-b-3mq44q9zgl 0.2s ease-out;
}

@keyframes fadeIn-b-3mq44q9zgl {
    from { opacity: 0; }
    to { opacity: 1; }
}

.login-modal-container[b-3mq44q9zgl] {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp-b-3mq44q9zgl 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 32px 28px;
}

@keyframes slideUp-b-3mq44q9zgl {
    from { transform: translateY(20px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.login-modal-body[b-3mq44q9zgl] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-header[b-3mq44q9zgl] {
    text-align: center;
    margin-bottom: 16px;
}

.login-logo[b-3mq44q9zgl] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.logo-image[b-3mq44q9zgl] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-logo .material-symbols-outlined[b-3mq44q9zgl] {
    font-size: 36px;
}

.login-title[b-3mq44q9zgl] {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.login-subtitle[b-3mq44q9zgl] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.login-form[b-3mq44q9zgl] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group[b-3mq44q9zgl] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label[b-3mq44q9zgl] {
    font-size: 13px;
    color: #4b5563;
    font-weight: 500;
}

.input-wrapper[b-3mq44q9zgl] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-3mq44q9zgl] {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    font-size: 20px;
}

.input-wrapper input[b-3mq44q9zgl] {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    font-size: 15px;
    color: #111827;
    transition: all 0.2s;
    outline: none;
}

.input-wrapper input:focus[b-3mq44q9zgl] {
    border-color: #005bc2;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 91, 194, 0.1);
}

.input-wrapper input[b-3mq44q9zgl]::placeholder {
    color: #9ca3af;
}

.form-options[b-3mq44q9zgl] {
    margin-top: 4px;
    margin-bottom: 4px;
}

.checkbox-container[b-3mq44q9zgl] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #6b7280;
    user-select: none;
}

.checkbox-container input[b-3mq44q9zgl] {
    display: none;
}

.checkmark[b-3mq44q9zgl] {
    width: 16px;
    height: 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-container input:checked ~ .checkmark[b-3mq44q9zgl] {
    background: #005bc2;
    border-color: #005bc2;
}

.checkbox-container input:checked ~ .checkmark[b-3mq44q9zgl]::after {
    content: "";
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-text a[b-3mq44q9zgl] {
    color: #005bc2;
    text-decoration: none;
}

.checkbox-text a:hover[b-3mq44q9zgl] {
    text-decoration: underline;
}

.btn-login[b-3mq44q9zgl] {
    width: 100%;
    height: 48px;
    background: #004ba0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-login:hover:not(:disabled)[b-3mq44q9zgl] {
    background: #003a80;
}

.btn-login:disabled[b-3mq44q9zgl] {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-login .material-symbols-outlined[b-3mq44q9zgl] {
    font-size: 20px;
}

.login-spinner[b-3mq44q9zgl] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: login-spin-b-3mq44q9zgl 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes login-spin-b-3mq44q9zgl {
    to { transform: rotate(360deg); }
}

.login-error[b-3mq44q9zgl] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 13px;
}

.form-footer[b-3mq44q9zgl] {
    text-align: center;
    margin-top: 8px;
}

.form-footer a[b-3mq44q9zgl] {
    font-size: 13px;
    color: #005bc2;
    text-decoration: none;
}

.form-footer a:hover[b-3mq44q9zgl] {
    text-decoration: underline;
}

.btn-close[b-3mq44q9zgl] {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-close:hover[b-3mq44q9zgl] {
    background: #f3f4f6;
    color: #4b5563;
}
/* _content/ShangSphereAI/Components/Layout/AIChatLayout.razor.rz.scp.css */
/* ===== AI Chat Layout - Scoped Styles ===== */

.ai-chat-root[b-2vz024wep8] {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #191c1d;
    -webkit-font-smoothing: antialiased;
}
/* _content/ShangSphereAI/Components/Layout/LayoutPreview.razor.rz.scp.css */
.layout-preview[b-2781srt7z4] {
    font-size: 9px;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    border: 2px solid #c0c4cc;
    transition: border .3s linear;
}

    .layout-preview:hover[b-2781srt7z4] {
        border: 2px solid #28a745;
    }

    .layout-preview.active[b-2781srt7z4] {
        border: 2px solid #28a745;
    }

[b-2781srt7z4] .layout {
    --bb-layout-height: 80px;
    --bb-layout-header-height: 16px;
    --bb-layout-footer-height: 12px;
    --bb-layout-sidebar-width: 30%;
    --bb-layout-banner-font-size: 9px;
    --bb-layout-title-color: #fff;
    border: 1px solid var(--bb-layout-header-background);
}

    [b-2781srt7z4] .layout .layout-footer,
    [b-2781srt7z4] .layout .layout-header {
        justify-content: center;
    }

    [b-2781srt7z4] .layout .layout-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
/* _content/ShangSphereAI/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-77hf30l10j] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-77hf30l10j] {
    flex: 1;
}

.sidebar[b-77hf30l10j] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-77hf30l10j] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-77hf30l10j]  a, .top-row[b-77hf30l10j]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-77hf30l10j]  a:hover, .top-row[b-77hf30l10j]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-77hf30l10j]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-77hf30l10j] {
        justify-content: space-between;
    }

    .top-row[b-77hf30l10j]  a, .top-row[b-77hf30l10j]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-77hf30l10j] {
        flex-direction: row;
    }

    .sidebar[b-77hf30l10j] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-77hf30l10j] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-77hf30l10j]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-77hf30l10j], article[b-77hf30l10j] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-77hf30l10j] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-77hf30l10j] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/ShangSphereAI/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-e6bgmnjmch] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-e6bgmnjmch] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-e6bgmnjmch] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-e6bgmnjmch] {
    font-size: 1.1rem;
}

.bi[b-e6bgmnjmch] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-e6bgmnjmch] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-e6bgmnjmch] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-e6bgmnjmch] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-e6bgmnjmch] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-e6bgmnjmch] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-e6bgmnjmch] {
        padding-bottom: 1rem;
    }

    .nav-item[b-e6bgmnjmch]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-e6bgmnjmch]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-e6bgmnjmch]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-e6bgmnjmch] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-e6bgmnjmch] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-e6bgmnjmch] {
        display: none;
    }

    .nav-scrollable[b-e6bgmnjmch] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/ShangSphereAI/Components/Pages/AIChatHome.razor.rz.scp.css */
/* ===== AI Chat Page Styles (Atheneum AI Clone) ===== */

/* -- Variables -- */
:root[b-36cy7j64lp] {
    --ai-primary: #005bc2;
    --ai-primary-container: #005bc2;
    --ai-on-primary: #ffffff;
    --ai-surface: #ffffff;
    --ai-surface-low: #f3f4f6;
    --ai-surface-lowest: #ffffff;
    --ai-surface-variant: #e5e7eb;
    --ai-on-surface: #111827;
    --ai-on-surface-variant: #4b5563;
    --ai-outline: #9ca3af;
    --ai-outline-variant: #d1d5db;
    --ai-primary-fixed: #dae1ff;
    --ai-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* -- Page Layout -- */
.ai-page[b-36cy7j64lp] {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: var(--ai-font-family);
    background: var(--ai-surface);
    color: var(--ai-on-surface);
    -webkit-font-smoothing: antialiased;
}

/* ===== Sidebar ===== */
.ai-sidebar[b-36cy7j64lp] {
    width: 260px;
    min-width: 260px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ebebeb;
    border-right: 1px solid rgba(0,0,0,0.05); /* Slight separation if needed */
    overflow-y: auto;
    z-index: 50;
}

.sidebar-header[b-36cy7j64lp] {
    padding: 24px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon[b-36cy7j64lp] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #1d4ed8; /* Blue logo background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.brand-name[b-36cy7j64lp] {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.btn-new-chat[b-36cy7j64lp] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-family: var(--ai-font-family);
    font-weight: 500;
    font-size: 14px;
    color: #111827;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-new-chat span[b-36cy7j64lp] {
    color: #111827;
}

.sidebar-search[b-36cy7j64lp] {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-icon[b-36cy7j64lp] {
    position: absolute;
    left: 12px;
    font-size: 18px;
    color: #9ca3af;
}

.sidebar-search input[b-36cy7j64lp] {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #e5e7eb;
    font-size: 13px;
    color: #111827;
    outline: none;
    font-family: var(--ai-font-family);
}
.sidebar-search input[b-36cy7j64lp]::placeholder {
    color: #6b7280;
}
.sidebar-search input:focus[b-36cy7j64lp] {
    background: #ffffff;
    border-color: #d1d5db;
}

/* -- Nav -- */
.sidebar-nav[b-36cy7j64lp] {
    flex: 1;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    scrollbar-width: none;
}

.sidebar-nav[b-36cy7j64lp]::-webkit-scrollbar {
    display: none;
}

.nav-item[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
    cursor: pointer;
}

.nav-item.nav-active[b-36cy7j64lp] {
    background: #ffffff;
}

.nav-item:hover:not(.nav-active)[b-36cy7j64lp] {
    background: rgba(255,255,255,0.4);
}

.nav-icon[b-36cy7j64lp] {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.recent-label[b-36cy7j64lp] {
    padding: 24px 12px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-item-wrap[b-36cy7j64lp] {
    position: relative;
    border-radius: 8px;
}

.nav-item-wrap.active[b-36cy7j64lp] {
    background: rgba(255,255,255,0.4);
}

.recent-item[b-36cy7j64lp] {
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
}

.truncate[b-36cy7j64lp] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 170px;
}

/* -- Sidebar Footer -- */
.sidebar-footer[b-36cy7j64lp] {
    padding: 16px 20px;
    margin-top: auto;
    position: relative;
}

.user-profile[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px;
    transition: background-color 0.2s;
}

.user-profile:hover[b-36cy7j64lp] {
    background-color: #f3f4f6;
}

.user-menu-overlay[b-36cy7j64lp] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

.user-menu-popup[b-36cy7j64lp] {
    position: absolute;
    bottom: calc(80%);
    left: 10px;
    width: auto;
    min-width: 140px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    padding: 8px 0;
    z-index: 100;
    
    /* 动画与过渡效果 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom left;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.2s;
}

.user-menu-popup.show[b-36cy7j64lp] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu-item[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: background-color 0.2s;
    border-radius: 8px;
    margin: 4px 8px;
    border: none;
    background: none;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

/* .menu-item:hover {
    background-color: #f1f5f9;
} */

.menu-item.logout-btn[b-36cy7j64lp],
.menu-item.login-btn[b-36cy7j64lp] {
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    font-family: inherit;
}

.menu-item .material-symbols-outlined[b-36cy7j64lp] {
    font-size: 18px;
    color: #4b5563;
}

.user-avatar-sm img[b-36cy7j64lp] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.user-avatar-guest[b-36cy7j64lp] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 1px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-not-logged[b-36cy7j64lp] {
    opacity: 0.8;
}

.user-info[b-36cy7j64lp] {
    display: flex;
    flex-direction: column;
}

.user-name[b-36cy7j64lp] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.user-plan[b-36cy7j64lp] {
    font-size: 12px;
    color: #6b7280;
}

/* ===== Main ===== */
.ai-main[b-36cy7j64lp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* ===== Chat Header Bar (Model Selector) ===== */
.chat-header-bar[b-36cy7j64lp] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 8px 24px;
    border-bottom: 1px solid #f0f2f5;
    background: #ffffff;
}

.model-selector[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-selector-icon[b-36cy7j64lp] {
    font-size: 16px;
    color: #9ca3af;
}

.model-selector-label[b-36cy7j64lp] {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.model-chips[b-36cy7j64lp] {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    padding: 3px;
    border-radius: 10px;
}

.model-chip[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 8px;
    background: transparent;
    border: none;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.model-chip-active[b-36cy7j64lp] {
    background: #ffffff;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}

.model-chip:hover:not(.model-chip-active)[b-36cy7j64lp] {
    color: #374151;
}

/* ===== Chat Canvas ===== */
.chat-canvas[b-36cy7j64lp] {
    flex: 1;
    overflow-y: auto;
    padding: 24px 24px 200px;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
}

.chat-canvas[b-36cy7j64lp]::-webkit-scrollbar {
    display: none;
}

.chat-container[b-36cy7j64lp] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* -- Message Rows -- */
.msg-row[b-36cy7j64lp] {
    display: flex;
    width: 100%;
}

.msg-user[b-36cy7j64lp] {
    justify-content: flex-end;
}

.msg-ai[b-36cy7j64lp] {
    justify-content: flex-start;
}

/* -- Bubbles -- */
.bubble-user[b-36cy7j64lp] {
    background: #f3f4f6;
    color: #111827;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    max-width: 80%;
}

.ai-response[b-36cy7j64lp] {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

/* -- Thinking Section -- */
.thinking-section[b-36cy7j64lp] {
    margin-bottom: 12px;
    overflow: hidden;
    background: transparent;
}

.thinking-header[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 8px 0px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    color: #6b7280;
    transition: color 0.15s;
}

.thinking-active .thinking-header[b-36cy7j64lp] {
    color: #7c3aed;
}

.thinking-header:hover[b-36cy7j64lp] {
    color: #374151;
}

.thinking-icon[b-36cy7j64lp] {
    font-size: 16px !important;
    color: #6b7280;
}

.thinking-active .thinking-icon[b-36cy7j64lp] {
    color: #7c3aed;
}

.thinking-label[b-36cy7j64lp] {
    font-weight: 500;
}

.thinking-toggle[b-36cy7j64lp] {
    font-size: 18px !important;
    color: #9ca3af;
}

.thinking-spinner[b-36cy7j64lp] {
    width: 14px;
    height: 14px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #7c3aed;
    border-radius: 50%;
    animation: thinking-spin-b-36cy7j64lp 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes thinking-spin-b-36cy7j64lp {
    to { transform: rotate(360deg); }
}

.thinking-body[b-36cy7j64lp] {
    padding: 8px 14px 12px;
    margin-left: 2px;
    border-left: 3px solid #d1d5db;
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
    max-height: 400px;
    overflow-y: auto;
}

.thinking-active .thinking-body[b-36cy7j64lp] {
    border-left-color: #7c3aed;
    color: #6b7280;
}

[b-36cy7j64lp] .thinking-body p {
    margin: 4px 0;
}

.ai-content[b-36cy7j64lp] {
    color: #111827;
    font-size: 15px;
    line-height: 1.6;
}

[b-36cy7j64lp] .ai-content h1 {
    font-size: 1.1em;
    font-weight: 700;
    margin: 16px 0 8px;
}

[b-36cy7j64lp] .ai-content h2 {
    font-size: 1.05em;
    font-weight: 700;
    margin: 14px 0 6px;
}

[b-36cy7j64lp] .ai-content h3 {
    font-size: 1em;
    font-weight: 600;
    margin: 12px 0 6px;
}

[b-36cy7j64lp] .ai-content h4,
[b-36cy7j64lp] .ai-content h5,
[b-36cy7j64lp] .ai-content h6 {
    font-size: 1em;
    font-weight: 600;
    margin: 10px 0 4px;
}

[b-36cy7j64lp] .ai-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

[b-36cy7j64lp] .ai-content li {
    margin-bottom: 8px;
}

[b-36cy7j64lp] .ai-content p {
    margin-bottom: 16px;
}

/* Code block styles */
[b-36cy7j64lp] .ai-content pre {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    margin-bottom: 16px;
    position: relative;
}

[b-36cy7j64lp] .ai-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ===== Input Area ===== */
.input-area[b-36cy7j64lp] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 0 24px;
    background: linear-gradient(to top, rgba(255,255,255,1) 80%, rgba(255,255,255,0));
    z-index: 30;
}

.input-container[b-36cy7j64lp] {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.input-box-wrapper[b-36cy7j64lp] {
    position: relative;
}

/* Feature Toggles inside the input wrapper to mimic attached floating pills */
.input-toggles[b-36cy7j64lp] {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.toggle-pill[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f3f4f6;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.2s;
}

.toggle-thinking-active[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #ede9fe;
    border: 1px solid #c4b5fd;
    font-size: 13px;
    font-weight: 500;
    color: #7c3aed;
    cursor: pointer;
    transition: background 0.2s;
}

.toggle-thinking-active span[b-36cy7j64lp] {
    color: #7c3aed !important;
}

.toggle-pill:hover[b-36cy7j64lp] {
    filter: brightness(0.95);
}

/* Input Box */
.input-box[b-36cy7j64lp] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    padding: 8px;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-box.focused[b-36cy7j64lp] {
    border-color: #d1d5db;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.input-box textarea[b-36cy7j64lp] {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    font-family: var(--ai-font-family);
    font-size: 15px;
    color: #111827;
    padding: 8px 12px;
    min-height: 48px;
    max-height: 200px;
}

.input-box textarea[b-36cy7j64lp]::placeholder {
    color: #9ca3af;
}

.input-toolbar[b-36cy7j64lp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 4px 0;
}

.toolbar-left[b-36cy7j64lp] {
    display: flex;
    gap: 8px;
}

.btn-tool[b-36cy7j64lp] {
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-tool:hover[b-36cy7j64lp] {
    background: #f3f4f6;
    color: #374151;
}

.btn-send[b-36cy7j64lp] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #1d4ed8;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-send:hover[b-36cy7j64lp] {
    background: #1e40af;
}

.btn-send.disabled[b-36cy7j64lp] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Disclaimer */
.disclaimer[b-36cy7j64lp] {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: #9ca3af;
}

/* -- Loading Spinner -- */
.loading-spinner[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.spinner[b-36cy7j64lp] {
    width: 20px;
    height: 20px;
    border: 2.5px solid #e5e7eb;
    border-top-color: #1d4ed8;
    border-radius: 50%;
    animation: spin-b-36cy7j64lp 0.8s linear infinite;
}

.loading-text[b-36cy7j64lp] {
    font-size: 14px;
    color: #6b7280;
}

@keyframes spin-b-36cy7j64lp {
    to { transform: rotate(360deg); }
}

/* ===== Welcome / Empty State ===== */
.empty-state[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 100%;
}

.welcome-container[b-36cy7j64lp] {
    max-width: 640px;
    width: 100%;
    text-align: center;
    padding: 32px 24px;
}

.welcome-logo[b-36cy7j64lp] {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.welcome-icon[b-36cy7j64lp] {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.25);
}

.welcome-title[b-36cy7j64lp] {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
}

.welcome-subtitle[b-36cy7j64lp] {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 8px;
}

.welcome-desc[b-36cy7j64lp] {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 480px;
}

/* Capability Cards */
.capability-cards[b-36cy7j64lp] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.capability-card[b-36cy7j64lp] {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.capability-card:hover[b-36cy7j64lp] {
    border-color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.capability-icon[b-36cy7j64lp] {
    margin-bottom: 10px;
}

.capability-title[b-36cy7j64lp] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.capability-desc[b-36cy7j64lp] {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

/* Hint Chips */
.welcome-hints[b-36cy7j64lp] {
    text-align: left;
}

.hint-label[b-36cy7j64lp] {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 10px;
}

.hint-chips[b-36cy7j64lp] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hint-chip[b-36cy7j64lp] {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.hint-chip:hover[b-36cy7j64lp] {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1d4ed8;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .ai-sidebar[b-36cy7j64lp] {
        display: none;
    }
    .mobile-topbar[b-36cy7j64lp] {
        display: flex !important;
        padding: 12px 16px;
        background: white;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* ===== Knowledge Base View ===== */
.kb-view[b-36cy7j64lp] {
    flex: 1;
    overflow-y: auto;
    padding: 40px 40px 40px;
    scrollbar-width: none;
}

.kb-view[b-36cy7j64lp]::-webkit-scrollbar {
    display: none;
}

.kb-content[b-36cy7j64lp] {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.kb-header[b-36cy7j64lp] {
    margin-bottom: 28px;
}

.kb-title[b-36cy7j64lp] {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.kb-subtitle[b-36cy7j64lp] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Drop Zone */
.kb-dropzone[b-36cy7j64lp] {
    border: 2px dashed #bfdbfe;
    border-radius: 16px;
    background: #f0f7ff;
    padding: 32px 24px 24px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 32px;
    cursor: default;
}

.kb-dropzone.dragging[b-36cy7j64lp] {
    border-color: #3b82f6;
    background: #dbeafe;
}

.kb-dropzone-inner[b-36cy7j64lp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kb-upload-icon[b-36cy7j64lp] {
    margin-bottom: 4px;
}

.kb-drop-title[b-36cy7j64lp] {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
    margin: 0;
}

.kb-drop-subtitle[b-36cy7j64lp] {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.kb-drop-hint[b-36cy7j64lp] {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.kb-file-badges[b-36cy7j64lp] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 6px 0;
}

.kb-badge[b-36cy7j64lp] {
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-kb-browse[b-36cy7j64lp] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 10px 24px;
    background: #1d4ed8;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    font-family: var(--ai-font-family);
}

.btn-kb-browse:hover[b-36cy7j64lp] {
    background: #1e40af;
}

.kb-upload-status[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.status-success[b-36cy7j64lp] {
    background: #d1fae5;
    color: #065f46;
}

.status-error[b-36cy7j64lp] {
    background: #fee2e2;
    color: #991b1b;
}

/* File List Section */
.kb-file-list-section[b-36cy7j64lp] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.kb-file-list-header[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.kb-list-title[b-36cy7j64lp] {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.kb-file-count[b-36cy7j64lp] {
    font-size: 13px;
    color: #6b7280;
}

.kb-empty-hint[b-36cy7j64lp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 40px 24px;
    color: #9ca3af;
    font-size: 14px;
}

.kb-empty-hint p[b-36cy7j64lp] {
    margin: 0;
}

.kb-file-list[b-36cy7j64lp] {
    display: flex;
    flex-direction: column;
}

.kb-file-item[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #f9fafb;
    transition: background 0.15s;
}

.kb-file-item:last-child[b-36cy7j64lp] {
    border-bottom: none;
}

.kb-file-item:hover[b-36cy7j64lp] {
    background: #f9fafb;
}

.kb-file-icon[b-36cy7j64lp] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kb-file-info[b-36cy7j64lp] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kb-file-name[b-36cy7j64lp] {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kb-file-meta[b-36cy7j64lp] {
    font-size: 12px;
    color: #9ca3af;
}

.kb-file-actions[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.kb-toggle-label[b-36cy7j64lp] {
    font-size: 12px;
    color: #6b7280;
}

/* Toggle Switch */
.kb-toggle-btn[b-36cy7j64lp] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.toggle-track[b-36cy7j64lp] {
    display: block;
    width: 38px;
    height: 22px;
    border-radius: 11px;
    background: #d1d5db;
    position: relative;
    transition: background 0.2s;
}

.toggle-on .toggle-track[b-36cy7j64lp] {
    background: #1d4ed8;
}

.toggle-thumb[b-36cy7j64lp] {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-on .toggle-thumb[b-36cy7j64lp] {
    left: 19px;
}

.kb-delete-btn[b-36cy7j64lp] {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    display: flex;
    align-items: center;
}

.kb-delete-btn:hover[b-36cy7j64lp] {
    color: #ef4444;
    background: #fee2e2;
}

.kb-loading[b-36cy7j64lp] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px;
    color: #6b7280;
    font-size: 14px;
}
/* _content/ShangSphereAI/Components/Pages/Mobile/AccessDenied.razor.rz.scp.css */
[b-41l4ihzvv7] .access-denied-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 0 40px;
    box-sizing: border-box;
}

[b-41l4ihzvv7] .icon-container {
    width: 64px;
    height: 64px;
    background-color: #f5f7fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

[b-41l4ihzvv7] .lock-icon {
    width: 28px;
    height: 28px;
    color: #8c9eb5;
}

[b-41l4ihzvv7] .title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 0;
    margin-left: auto;
    margin-left: auto;
    text-align: center;
}

[b-41l4ihzvv7] .description {
    font-size: 14px;
    color: #8c939d;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
}

[b-41l4ihzvv7] .back-btn {
    width: 100%;
    height: 44px;
    background-color: #1677ff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

[b-41l4ihzvv7] .back-btn:active {
    background-color: #0958d9;
}
/* _content/ShangSphereAI/Components/Pages/Mobile/Components/MobileLoginModal.razor.rz.scp.css */
[b-0u1wg08i6q] .modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

[b-0u1wg08i6q] .modal-dialog-custom {
    background-color: #ffffff;
    width: 80%;
    max-width: 340px;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: zoomIn-b-0u1wg08i6q 0.2s ease-out forwards;
}

[b-0u1wg08i6q] .modal-title-custom {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    margin-top: 4px;
}

[b-0u1wg08i6q] .modal-text-custom {
    font-size: 13px;
    color: #8c939d;
    margin-bottom: 24px;
    line-height: 1.5;
}

[b-0u1wg08i6q] .error-message {
    font-size: 12px;
    color: #f56c6c;
    margin-bottom: 16px;
    padding: 8px 12px;
    background-color: #fef0f0;
    border-radius: 8px;
    border: 1px solid #fde2e2;
}

[b-0u1wg08i6q] .loading-container {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[b-0u1wg08i6q] .modal-actions-custom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

[b-0u1wg08i6q] .btn-custom {
    flex: 1;
    height: 44px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

[b-0u1wg08i6q] .btn-cancel {
    background-color: #f5f7fa;
    color: #333333;
}

[b-0u1wg08i6q] .btn-cancel:active {
    background-color: #e4e7ed;
}

[b-0u1wg08i6q] .btn-confirm {
    background-color: #1677ff;
    color: #ffffff;
}

[b-0u1wg08i6q] .btn-confirm:active {
    background-color: #0958d9;
}

@keyframes zoomIn-b-0u1wg08i6q {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* _content/ShangSphereAI/Components/Pages/Mobile/Profile.razor.rz.scp.css */
[b-3m30mvvnxx] .profile-page {
    padding: 20px;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

[b-3m30mvvnxx] .profile-header {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

[b-3m30mvvnxx] .user-name {
    font-size: 24px;
    font-weight: bold;
    color: #002D54; 
    margin-bottom: 20px;
    text-align: center;
}

[b-3m30mvvnxx] .user-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

[b-3m30mvvnxx] .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 15px;
}

[b-3m30mvvnxx] .info-item i {
    width: 24px;
    color: #adb5bd;
}

[b-3m30mvvnxx] .profile-actions {
    position: fixed;
    bottom: 120px;
    left: 20px;
    right: 20px;
    z-index: 100;
}

[b-3m30mvvnxx] .logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid #f8f9fa;
    border-radius: 12px;
    color: #dc3545;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

[b-3m30mvvnxx] .version-info {
    position: fixed;
    bottom: 90px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ced4da;
    font-size: 12px;
    z-index: 100;
}

[b-3m30mvvnxx] .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #6c757d;
    gap: 12px;
}
/* _content/ShangSphereAI/Components/Pages/Policy/AboutUs.razor.rz.scp.css */
.policy-page[b-sfnpuys4c4] {
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 3rem 2rem;
}

.policy-container[b-sfnpuys4c4] {
    width: 100%;
    max-width: 1000px;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.9;
}

.policy-header[b-sfnpuys4c4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 1.2rem;
}

.policy-back[b-sfnpuys4c4] {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}

.policy-back:hover[b-sfnpuys4c4] {
    color: #333;
}

.policy-title[b-sfnpuys4c4] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.policy-loading[b-sfnpuys4c4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 0;
    color: #999;
}

.policy-spinner[b-sfnpuys4c4] {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: #555;
    border-radius: 50%;
    animation: policy-spin 0.8s linear infinite;
}

@@keyframes policy-spin {
    to[b-sfnpuys4c4] { transform: rotate(360deg); }
}

.policy-body[b-sfnpuys4c4] {
    white-space: pre-wrap;
    word-break: break-word;
}

@@media (max-width: 768px) {
    .policy-page[b-sfnpuys4c4] {
        padding: 1.5rem 1rem;
    }

    .policy-title[b-sfnpuys4c4] {
        font-size: 1.4rem;
    }
}
/* _content/ShangSphereAI/Components/Pages/Policy/PrivacyPolicy.razor.rz.scp.css */
.policy-page[b-hhoz6fca23] {
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 3rem 2rem;
}

.policy-container[b-hhoz6fca23] {
    width: 100%;
    max-width: 1000px;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.9;
}

.policy-header[b-hhoz6fca23] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 1.2rem;
}

.policy-back[b-hhoz6fca23] {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}

.policy-back:hover[b-hhoz6fca23] {
    color: #333;
}

.policy-title[b-hhoz6fca23] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.policy-loading[b-hhoz6fca23] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 0;
    color: #999;
}

.policy-spinner[b-hhoz6fca23] {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: #555;
    border-radius: 50%;
    animation: policy-spin 0.8s linear infinite;
}

@@keyframes policy-spin {
    to[b-hhoz6fca23] { transform: rotate(360deg); }
}

.policy-body[b-hhoz6fca23] {
    white-space: pre-wrap;
    word-break: break-word;
}

@@media (max-width: 768px) {
    .policy-page[b-hhoz6fca23] {
        padding: 1.5rem 1rem;
    }

    .policy-title[b-hhoz6fca23] {
        font-size: 1.4rem;
    }
}
/* _content/ShangSphereAI/Components/Pages/Policy/UserAgreement.razor.rz.scp.css */
.policy-page[b-0r8hvx4y61] {
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 3rem 2rem;
}

.policy-container[b-0r8hvx4y61] {
    width: 100%;
    max-width: 1000px;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.9;
}

.policy-header[b-0r8hvx4y61] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 1.2rem;
}

.policy-back[b-0r8hvx4y61] {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}

.policy-back:hover[b-0r8hvx4y61] {
    color: #333;
}

.policy-title[b-0r8hvx4y61] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.policy-loading[b-0r8hvx4y61] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 0;
    color: #999;
}

.policy-spinner[b-0r8hvx4y61] {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: #555;
    border-radius: 50%;
    animation: policy-spin 0.8s linear infinite;
}

@@keyframes policy-spin {
    to[b-0r8hvx4y61] { transform: rotate(360deg); }
}

.policy-body[b-0r8hvx4y61] {
    white-space: pre-wrap;
    word-break: break-word;
}

@@media (max-width: 768px) {
    .policy-page[b-0r8hvx4y61] {
        padding: 1.5rem 1rem;
    }

    .policy-title[b-0r8hvx4y61] {
        font-size: 1.4rem;
    }
}
/* _content/ShangSphereAI/Components/Pages/Reception/Home.razor.rz.scp.css */
.section-ripples-full[b-lklk5qa0hn] {
    height: 100vh; /* 让section的高度等于视口的高度 */
    display: flex; /* 如果需要让内容垂直居中，可以使用flex */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}
/* _content/ShangSphereAI/Components/RazorClassLibrarys/BbTables/TItemTable.razor.rz.scp.css */

.table-full[b-ala5wq380y] {
    height: calc(100vh - 165px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-125[b-ala5wq380y] {
    height: calc(100vh - 125px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-200[b-ala5wq380y] {
    height: calc(100vh - 200px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-220[b-ala5wq380y] {
    height: calc(100vh - 220px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}


.table-full-250[b-ala5wq380y] {
    height: calc(100vh - 250px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-260[b-ala5wq380y] {
    height: calc(100vh - 260px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-270[b-ala5wq380y] {
    height: calc(100vh - 270px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-290[b-ala5wq380y] {
    height: calc(100vh - 290px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-310[b-ala5wq380y] {
    height: calc(100vh - 310px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-380[b-ala5wq380y] {
    height: calc(100vh - 380px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-400[b-ala5wq380y] {
    height: calc(100vh - 400px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-410[b-ala5wq380y] {
    height: calc(100vh - 410px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-420[b-ala5wq380y] {
    height: calc(100vh - 420px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-470[b-ala5wq380y] {
    height: calc(100vh - 470px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}


/* _content/ShangSphereAI/Components/RazorClassLibrarys/FileUpload/FileUploadComponent.razor.rz.scp.css */
.file-upload-component[b-g00k4hi826] {
    padding: 10px;
}

.existing-files[b-g00k4hi826] {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.existing-files h6[b-g00k4hi826] {
    margin-bottom: 10px;
    color: #495057;
    font-weight: 600;
}

.upload-section[b-g00k4hi826] {
    margin-top: 10px;
}
/* _content/ShangSphereAI/Components/RazorClassLibrarys/FileUpload/SimpleFileUploadComponent.razor.rz.scp.css */
.simple-file-upload[b-o8e069513l] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
/*    background: #f8f9fa;*/
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.file-preview-list[b-o8e069513l] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow-x: auto;
    min-height: 80px;
}

.no-files[b-o8e069513l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.no-files i[b-o8e069513l] {
    font-size: 1.5rem;
    opacity: 0.5;
}

.file-item[b-o8e069513l] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.file-item:hover[b-o8e069513l] {
    transform: translateY(-2px);
    text-decoration: none;
}

.file-thumbnail[b-o8e069513l] {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.25rem;
    border: 2px solid #dee2e6;
    transition: border-color 0.2s;
}

.file-item:hover .file-thumbnail[b-o8e069513l] {
    border-color: #0d6efd;
}

.file-icon[b-o8e069513l] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 0.25rem;
    font-size: 2rem;
    transition: all 0.2s;
}

.file-item:hover .file-icon[b-o8e069513l] {
    border-color: #0d6efd;
    background: #e7f1ff;
}

.file-name[b-o8e069513l] {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    text-align: center;
    color: #495057;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-delete[b-o8e069513l] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1;
}

.file-item:hover .file-delete[b-o8e069513l] {
    opacity: 1;
}

.file-delete:hover[b-o8e069513l] {
    background: #bb2d3b;
}

.upload-button-wrapper[b-o8e069513l] {
    flex-shrink: 0;
}

/* 滚动条样式 */
.file-preview-list[b-o8e069513l]::-webkit-scrollbar {
    height: 6px;
}

.file-preview-list[b-o8e069513l]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.file-preview-list[b-o8e069513l]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.file-preview-list[b-o8e069513l]::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* _content/ShangSphereAI/Components/RazorClassLibrarys/FileUpload/TempFileUploadComponent.razor.rz.scp.css */
/* 暂存文件上传组件样式 */

.temp-file-upload[b-j7sp1zkto4] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.file-preview-list[b-j7sp1zkto4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    min-height: 100px;
}

.file-item[b-j7sp1zkto4] {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.file-item:hover[b-j7sp1zkto4] {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.file-thumbnail[b-j7sp1zkto4] {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.file-icon[b-j7sp1zkto4] {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 4px;
}

.file-name[b-j7sp1zkto4] {
    font-size: 12px;
    color: #374151;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.file-status[b-j7sp1zkto4] {
    width: 100%;
    display: flex;
    justify-content: center;
}

.file-delete[b-j7sp1zkto4] {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
}

.file-item:hover .file-delete[b-j7sp1zkto4] {
    opacity: 1;
}

.file-delete:hover[b-j7sp1zkto4] {
    background: rgba(220, 38, 38, 1);
    transform: scale(1.1);
}

.no-files[b-j7sp1zkto4] {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #9ca3af;
    gap: 8px;
}

.no-files i[b-j7sp1zkto4] {
    font-size: 48px;
    opacity: 0.5;
}

.no-files span[b-j7sp1zkto4] {
    font-size: 14px;
}

.upload-button-wrapper[b-j7sp1zkto4] {
    display: flex;
    justify-content: flex-start;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .file-preview-list[b-j7sp1zkto4] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}
/* _content/ShangSphereAI/Components/RazorClassLibrarys/JsonInfoViewer/JsonInfoViewer.razor.rz.scp.css */
.json-info-viewer[b-tl2a3n6bww] {
    display: inline-block;
}

.info-items[b-tl2a3n6bww] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.info-item[b-tl2a3n6bww] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
}

.info-key[b-tl2a3n6bww] {
    color: #666;
    font-weight: 500;
}

.info-value[b-tl2a3n6bww] {
    color: #333;
}

.view-more-link[b-tl2a3n6bww] {
    color: #1890ff;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.view-more-link:hover[b-tl2a3n6bww] {
    color: #40a9ff;
    transform: scale(1.1);
}

/* Dialog内容样式 */
.json-detail-view[b-tl2a3n6bww] {
    padding: 16px;
}

.detail-items[b-tl2a3n6bww] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.detail-item[b-tl2a3n6bww] {
    padding: 12px;
    background-color: #fafafa;
    border-radius: 6px;
}

.detail-key[b-tl2a3n6bww] {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 6px;
}

.detail-value[b-tl2a3n6bww] {
    font-size: 14px;
    color: #333;
    word-break: break-all;
}

.detail-value-only[b-tl2a3n6bww] {
    font-size: 14px;
    color: #333;
    word-break: break-all;
}
/* _content/ShangSphereAI/Components/RazorClassLibrarys/MobileConfirmDialog.razor.rz.scp.css */
.mobile-confirm-overlay[b-htkhghzums] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(2px);
}

.mobile-confirm-dialog[b-htkhghzums] {
    background: #ffffff;
    border-radius: 20px;
    width: 80%;
    max-width: 320px;
    padding: 30px 20px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dialog-icon[b-htkhghzums] {
    font-size: 56px;
    margin-bottom: 12px;
}

.dialog-icon .text-success[b-htkhghzums] {
    color: #4CAF50; /* 仿图中的清爽绿色 */
}

.dialog-icon .text-warning[b-htkhghzums] {
    color: #FF9800; /* 警告黄色 */
}

.dialog-content[b-htkhghzums] {
    font-size: 17px;
    color: #4CAF50; /* 图片中文字与勾号同色，可根据type在组件中细调，这里给默认值 */
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.5;
}

.mobile-confirm-dialog.warning .dialog-content[b-htkhghzums] {
    color: #333333; /* 警告时文字黑色更好阅读 */
}

.dialog-actions[b-htkhghzums] {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.dialog-actions button[b-htkhghzums] {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel[b-htkhghzums] {
    background-color: #f1f2f6;
    color: #666666;
}

.btn-cancel:active[b-htkhghzums] {
    background-color: #e2e4e9;
}

.btn-confirm[b-htkhghzums] {
    background-color: #e8f5e9;
    color: #4CAF50;
}

.btn-confirm:active[b-htkhghzums] {
    background-color: #c8e6c9;
}

/* 警告类型的按钮样式 */
.mobile-confirm-dialog.warning .btn-confirm[b-htkhghzums] {
    background-color: #ffebee;
    color: #FF5252;
}

.mobile-confirm-dialog.warning .btn-confirm:active[b-htkhghzums] {
    background-color: #ffcdd2;
}

.bounce-in[b-htkhghzums] {
    animation: bounceIn-b-htkhghzums 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounceIn-b-htkhghzums {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* _content/ShangSphereAI/Components/RazorClassLibrarys/OuterBbTables/ExternalDataTable.razor.rz.scp.css */
.table-full[b-sr1euqpzdb] {
    height: calc(100vh - 82px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-125[b-sr1euqpzdb] {
    height: calc(100vh - 125px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-162[b-sr1euqpzdb] {
    height: calc(100vh - 162px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-210[b-sr1euqpzdb] {
    height: calc(100vh - 210px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-235[b-sr1euqpzdb] {
    height: calc(100vh - 235px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-350[b-sr1euqpzdb] {
    height: calc(100vh - 350px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}


.table-full-430[b-sr1euqpzdb] {
    height: calc(100vh - 430px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}

.table-full-470[b-sr1euqpzdb] {
    height: calc(100vh - 470px - var(--bb-layout-footer-height) - var(--bb-tabs-item-height, 0px));
}
