/* /Components/TableAutoHeightWrapper.razor.rz.scp.css */
.table-auto-height-wrapper[b-9ya2azbh1m] {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    /* 确保表格容器填满包装器 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table-wrapper {
        height: 100% !important;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    /* 表格头部区域 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table-fixed-header {
        flex: 0 0 auto; /* 不伸缩，保持自然高度 */
    }

    /* 表格内容滚动区域 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table-scroll-area {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 0; /* 允许收缩 */
    }

    /* 表格本身 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table {
        width: 100%;
        margin-bottom: 0;
    }

    /* 确保表格体填满滚动区域 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table-scroll-area .table tbody {
        display: table-row-group;
    }

    /* 处理表格布局 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table-responsive {
        flex: 1;
        min-height: 0;
    }

    /* 确保表格头部固定时的样式 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table-sticky-header {
        position: sticky;
        top: 0;
        z-index: 10;
        background-color: var(--bs-body-bg);
    }

    /* 防止表格内容被截断 */
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table td,
    .table-auto-height-wrapper[b-9ya2azbh1m]  .table th {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* 调试用的边框（可选，发布时可以移除） */
/*.table-auto-height-wrapper {
    border: 1px solid red;
}

.table-auto-height-wrapper ::deep .table-wrapper {
    border: 1px solid blue;
}

.table-auto-height-wrapper ::deep .table-scroll-area {
    border: 1px solid green;
}*/
/* /Layout/LayoutPreview.razor.rz.scp.css */
.layout-preview[b-yatdi18hcy] {
    font-size: 9px;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    border: 2px solid #c0c4cc;
    transition: border .3s linear;
}

    .layout-preview:hover[b-yatdi18hcy] {
        border: 2px solid #28a745;
    }

    .layout-preview.active[b-yatdi18hcy] {
        border: 2px solid #28a745;
    }

[b-yatdi18hcy] .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-yatdi18hcy] .layout .layout-footer,
    [b-yatdi18hcy] .layout .layout-header {
        justify-content: center;
    }

    [b-yatdi18hcy] .layout .layout-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.layout-drawer-body[b-ku4zx6iu5v]  .groupbox {
    margin-top: 1rem;
}

.layout-drawer-body[b-ku4zx6iu5v]  .btn-info {
    --bs-info: #0078d4;
    --bs-btn-hover-bg: #1260b0;
    margin-bottom: 1rem;
}

.cell-label[b-ku4zx6iu5v] {
    line-height: 35px;
}

#blazor-error-ui[b-ku4zx6iu5v] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-ku4zx6iu5v] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Pages/Users.razor.rz.scp.css */
.page-user[b-vwxlrma4cp] {
    height: calc(100vh - 2rem - var(--bb-layout-footer-height) - var(--bb-layout-header-height) - var(--bb-tabs-item-height, 0));
    display: flex;
    flex-direction: column;
}

.user-demo-address[b-vwxlrma4cp] {
    margin-top: .25rem;
    font-size: 86%;
    color: #c0c4cc;
}

[b-vwxlrma4cp] .table-users {
    flex: 1;
    height: 1%;
    min-height: 0;
}

[b-vwxlrma4cp] .table-cell img {
    width: 46px;
    border-radius: var(--bs-border-radius);
}

[b-vwxlrma4cp] .table-cell .progress {
    height: 6px;
    margin-top: .5rem;
}
