/* /Components/ImageUpload.razor.rz.scp.css */
/* 操作按钮和上传提示的上下外边距 */
.action-buttons-row[b-07a7tgfz2y],
.upload-tip-row[b-07a7tgfz2y] {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* 操作按钮容器 - 响应式布局 */
.action-buttons-container[b-07a7tgfz2y] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

    .action-buttons-container[b-07a7tgfz2y]  .btn,
    .action-buttons-container[b-07a7tgfz2y]  button {
        flex-shrink: 0;
        white-space: nowrap;
    }

/* 水印类型按钮样式 */
.watermark-type-buttons[b-07a7tgfz2y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
}

    .watermark-type-buttons[b-07a7tgfz2y]  button {
        width: auto;
        min-width: fit-content;
    }

/* 图片分类按钮样式 */
.category-buttons[b-07a7tgfz2y] {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: 1fr;
    align-items: center;
    justify-items: stretch;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

    .category-buttons[b-07a7tgfz2y]  button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        white-space: nowrap;
    }

/* 确保表格单元格内容垂直居中 */
[b-07a7tgfz2y] .table tbody tr td {
    vertical-align: middle;
}

/* 水印参数输入框宽度和边距 */
.watermark-param-wrapper[b-07a7tgfz2y] {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
}

.watermark-param-input[b-07a7tgfz2y] {
    width: 100%;
    box-sizing: border-box;
}

/* 水印类型预览容器 */
.watermark-preview-container[b-07a7tgfz2y] {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0.5rem;
}

.watermark-preview-item[b-07a7tgfz2y] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

    .watermark-preview-item[b-07a7tgfz2y]  .image-viewer {
        max-width: 100%;
        height: auto;
        max-height: 150px;
        width: 100%;
    }

/* 房型图上传区域样式 - 固定大小 300*200 */
.room-type-image-wrapper[b-07a7tgfz2y] {
    width: 300px;
    height: 200px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .room-type-image-wrapper[b-07a7tgfz2y]  .image-viewer {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .room-type-image-wrapper[b-07a7tgfz2y]  img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
/* /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/CollectionManage/CollectionDetail.razor.rz.scp.css */
/* Card BodyTemplate 左右内边距（约五个字符宽度） */
.card-body-content[b-pxfgj8hhjx] {
    padding-left: 10ch;
    padding-right: 10ch;
}

 
.row[b-pxfgj8hhjx] {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col-6[b-pxfgj8hhjx] {
    flex: 0 0 50%;
    max-width: 50%; 
}

.info-field[b-pxfgj8hhjx] {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 2.5rem;
}

.info-label[b-pxfgj8hhjx] {
    min-width: 90px;
    width: 90px;
    margin: 0;
    margin-right: 0.25rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    line-height: 1.5;
}

/* 必填项：用 ::before 显示红色星号；预留相同左侧空间使与催收类型等 label 文字对齐 */
.collection-form-field .info-label[b-pxfgj8hhjx] {
    position: relative;
    padding-left: 0.75em;
}

.collection-form-field .info-label.required[b-pxfgj8hhjx]::before {
    content: '*';
    color: red;
    position: absolute;
    left: 0;
}

.info-value[b-pxfgj8hhjx] {
    flex: 1;
    color: #212529;
    font-size: 0.95rem;
    word-break: break-word;
    line-height: 1.5;
    min-width: 0;
    display: flex;
    align-items: center;
}

.water-electric-tab-bar[b-pxfgj8hhjx] {
    display: flex;
    border-bottom: 1px solid #dee2e6;
}

    .water-electric-tab-bar span[b-pxfgj8hhjx] {
        padding: 0.5rem 1rem;
        cursor: pointer;
        color: #0d6efd;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
    }

        .water-electric-tab-bar span:hover[b-pxfgj8hhjx] {
            color: #0a58ca;
        }

        .water-electric-tab-bar span.active[b-pxfgj8hhjx] {
            font-weight: 600;
            color: #0d6efd;
            border-bottom-color: #0d6efd;
        }

.water-electric-tab-bar[b-pxfgj8hhjx] {
    display: flex;
    border-bottom: 1px solid #dee2e6;
}

    .water-electric-tab-bar span[b-pxfgj8hhjx] {
        padding: 0.5rem 1rem;
        cursor: pointer;
        color: #0d6efd;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
    }

        .water-electric-tab-bar span:hover[b-pxfgj8hhjx] {
            color: #0a58ca;
        }

        .water-electric-tab-bar span.active[b-pxfgj8hhjx] {
            font-weight: 600;
            color: #0d6efd;
            border-bottom-color: #0d6efd;
        }

.water-electric-daterange[b-pxfgj8hhjx] {
    width: 25%;
    min-width: 180px;
}

    .water-electric-daterange .form-control[b-pxfgj8hhjx] {
        max-width: 100%;
    }

.distinguish-rent-property-select[b-pxfgj8hhjx] {
    width: 15%;
    min-width: 80px;
}

    .distinguish-rent-property-select .form-select[b-pxfgj8hhjx] {
        max-width: 100%;
    }

/* 保存和取消按钮样式 - 居中显示，宽度为默认的1.5倍 */
.save-cancel-buttons[b-pxfgj8hhjx] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.save-cancel-buttons[b-pxfgj8hhjx]  .btn {
    min-width: 120px;
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}
 


/* 加载状态样式 */
.splitting[b-pxfgj8hhjx] {
    max-width: 35rem;
    min-width: 25rem;
    width: auto;
}

.splitting[b-pxfgj8hhjx]  * {
    font-size: 2rem !important;
    font-weight: 600;
    line-height: 1.5;
}

/* 表单行样式 */
.form-inline[b-pxfgj8hhjx] {
    display: flex;
    flex-wrap: wrap;
}

/* 操作按钮容器样式 */
.action-buttons-container[b-pxfgj8hhjx] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
/* ========== 设置催收内容：label 与控件水平（垂直）对齐 ========== */
.collection-form-field[b-pxfgj8hhjx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.25rem;
}

/* 表单行内 label 与控件同一行、垂直居中 */
.collection-form-field .info-label[b-pxfgj8hhjx] {
    flex-shrink: 0;
    margin-bottom: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* 控件区域占满剩余宽度，并与 label 垂直居中 */
.collection-form-field > *:not(.info-label)[b-pxfgj8hhjx] {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.collection-form-field[b-pxfgj8hhjx]  .form-control,
.collection-form-field[b-pxfgj8hhjx]  .form-select,
.collection-form-field[b-pxfgj8hhjx]  input,
.collection-form-field[b-pxfgj8hhjx]  .dropdown {
    margin-bottom: 0;
}

/* 设置催收内容：下拉框最宽为原本宽度×2，不占满整屏；窄屏时随容器缩小 */
.collection-form-field[b-pxfgj8hhjx]  .form-select,
.collection-form-field[b-pxfgj8hhjx]  select,
.collection-form-field[b-pxfgj8hhjx]  .dropdown {
    min-width: min(18ch, 100%);
    max-width: min(48ch, 100%);
    width: 100%;
    box-sizing: border-box;
}

/* 仅客户称谓：文本框与下拉框宽度一致 */
.collection-form-field.field-customer-name[b-pxfgj8hhjx]  .form-control,
.collection-form-field.field-customer-name[b-pxfgj8hhjx]  input {
    min-width: min(18ch, 100%);
    max-width: min(48ch, 100%);
    width: 100%;
    box-sizing: border-box;
}

/* InputGroupLabel 组件内的 label 与控件对齐 */
.collection-form-field[b-pxfgj8hhjx]  .input-group-label,
.collection-form-field[b-pxfgj8hhjx]  .form-label {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}

/* 输入组标签样式 - 右对齐（非设置催收内容区域保留）；催收月份不设 min-width */
[b-pxfgj8hhjx] .form-label {
    /*min-width: 150px;*/
    margin-bottom: 0;
    font-weight: 500;
    text-align: right !important;
}
 

.water-electric-month-row[b-pxfgj8hhjx]  .form-label {
    min-width: unset;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .info-label[b-pxfgj8hhjx] {
        margin-bottom: 0.375rem;
    }
}

/* 仅本页：覆盖 BootstrapBlazor 表格滚动区域默认的 height:100%，租金/停车/保洁、水电费用表格高度由内容决定 */
[b-pxfgj8hhjx] .table-wrapper.scroll,
[b-pxfgj8hhjx] .table-scroll.scroll {
    height: auto !important;
}
/* /Pages/CollectionManage/CollectionManage.razor.rz.scp.css */
.collection-manage-page[b-7nlznyrr1k] {
    height: calc(100vh - var(--bb-layout-header-height, 60px) - var(--bb-layout-footer-height, 0px) - var(--bb-tabs-item-height, 0px) - 2rem + 85px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 10px;
}

/* 确保表格容器填满页面 */
[b-7nlznyrr1k] .collection-table {
    flex: 1;
    height: 1%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* 固定表布局，列宽（含待催缴租金及物业费等 Width 属性）才会生效，否则默认 auto 会被内容撑开 */
[b-7nlznyrr1k] .collection-table .table {
    table-layout: fixed;
    width: 100%;
}

/* 表格单元格自动换行 */
[b-7nlznyrr1k] .collection-table .table td,
[b-7nlznyrr1k] .collection-table .table th {
    white-space: normal !important;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    vertical-align: top;
}

/* 搜索标签样式 */
.search-label[b-7nlznyrr1k] {
    min-width: auto;
    white-space: nowrap;
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-bottom: 0;
}


/* 仅本页：固定表体滚动区域高度，避免撑满导致下方被遮挡 */
.collection-manage-page[b-7nlznyrr1k]  .table-fixed-body.scroll {
    height: calc(100% - 60px) !important;
}
/* /Pages/HouseManage/HouseDetail.razor.rz.scp.css */
/* Card 之间的间距 - 除了最后一个 Card */
[b-s53y6sq4el] .card:not(:last-child) {
    margin-bottom: 10px;
}

/* Card BodyTemplate 左右内边距（约五个字符宽度） */
.card-body-content[b-s53y6sq4el] {
    padding-left: 10ch;
    padding-right: 10ch;
}

/* 表单字段间距 */
.row.g-3[b-s53y6sq4el] {
    margin-bottom: 1rem;
}

/* 保存和取消按钮样式 - 居中显示，宽度为默认的1.5倍 */
.save-cancel-buttons[b-s53y6sq4el] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.save-cancel-buttons[b-s53y6sq4el]  .btn {
    min-width: 120px;
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* 输入组标签样式 - 右对齐 */
[b-s53y6sq4el] .form-label {
    min-width: 150px;
    margin-bottom: 0;
    font-weight: 500;
    text-align: right !important;
}

/* 确保 BootstrapInputGroupLabel 中的标签文本右对齐 */
[b-s53y6sq4el] .input-group-label .form-label,
[b-s53y6sq4el] .input-group .form-label {
    text-align: right !important;
}

/* 文本域样式 */
[b-s53y6sq4el] textarea {
    min-height: 100px;
}

/* 复选框和单选框样式优化 */
/*.d-flex.flex-wrap.gap-3 .form-check,
.d-flex.gap-3 .form-check {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}*/

/* 加载状态样式 */
.splitting[b-s53y6sq4el] {
    max-width: 35rem;
    min-width: 25rem;
    width: auto;
}

    .splitting[b-s53y6sq4el]  * {
        font-size: 2rem !important;
        font-weight: 600;
        line-height: 1.5;
    }

/* 在 CheckboxList 组件容器上设置 CSS 变量 */
[b-s53y6sq4el] .checkbox-list {
    --bb-checkbox-item-width: 100px !important;
}


[b-s53y6sq4el] .radio-list {
    --bb-radio-item-width: 110px !important;
}


/* 只读输入框样式 - 类似 Label 的样式（无边框、无背景色） */
[b-s53y6sq4el] .readonly-input input,
[b-s53y6sq4el] .readonly-input .form-control,
[b-s53y6sq4el] .readonly-input input.form-control,
[b-s53y6sq4el] .readonly-input .form-control:focus,
[b-s53y6sq4el] .readonly-input input:focus,
[b-s53y6sq4el] .readonly-input .form-control:not(:disabled):not([readonly]),
[b-s53y6sq4el] .readonly-input input:not(:disabled):not([readonly]),
[b-s53y6sq4el] .readonly-input input[readonly],
[b-s53y6sq4el] .readonly-input .form-control[readonly] {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: none !important;
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    cursor: default !important;
    outline: none !important;
}

/* 确保输入框容器也没有边框 */
[b-s53y6sq4el] .readonly-input,
[b-s53y6sq4el] .readonly-input .input-group,
[b-s53y6sq4el] .readonly-input .form-group,
[b-s53y6sq4el] .readonly-input .input-group > * {
    border: none !important;
    border-width: 0 !important;
}

/* 移除输入框的所有边框变体 */
[b-s53y6sq4el] .readonly-input .form-control.border,
[b-s53y6sq4el] .readonly-input input.border {
    border: none !important;
}

/* 交付标准 Select 组件样式 - 类似 Label 的样式（无边框、无背景色、隐藏下拉箭头） */
[b-s53y6sq4el] .delivery-standard-select {
    border: none !important;
}

[b-s53y6sq4el] .delivery-standard-select .form-select,
[b-s53y6sq4el] .delivery-standard-select select,
[b-s53y6sq4el] .delivery-standard-select .form-select.form-control {
    border: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    cursor: default !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    color: #212529 !important;
}

/* BootstrapBlazor Select 组件可能使用 dropdown-toggle，需要特殊处理 */
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle {
    border: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    cursor: default !important;
    color: #212529 !important;
}

/* 隐藏 Select 组件的下拉箭头图标 - 只隐藏箭头，不影响文本 */
[b-s53y6sq4el] .delivery-standard-select .form-select::after,
[b-s53y6sq4el] .delivery-standard-select::after,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle::after,
[b-s53y6sq4el] .delivery-standard-select .input-group-append::after,
[b-s53y6sq4el] .delivery-standard-select .input-group-text::after,
[b-s53y6sq4el] .delivery-standard-select .form-select::before,
[b-s53y6sq4el] .delivery-standard-select::before,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle::before {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

/* 隐藏 Select 组件中的下拉箭头图标元素 */
[b-s53y6sq4el] .delivery-standard-select .input-group-append .dropdown-toggle::after,
[b-s53y6sq4el] .delivery-standard-select .input-group-text .dropdown-toggle::after,
[b-s53y6sq4el] .delivery-standard-select .input-group-append .dropdown-toggle::before,
[b-s53y6sq4el] .delivery-standard-select .input-group-text .dropdown-toggle::before {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

/* 隐藏所有可能的图标元素（FontAwesome、SVG等） */
[b-s53y6sq4el] .delivery-standard-select i,
[b-s53y6sq4el] .delivery-standard-select .fa,
[b-s53y6sq4el] .delivery-standard-select .fas,
[b-s53y6sq4el] .delivery-standard-select .far,
[b-s53y6sq4el] .delivery-standard-select .fal,
[b-s53y6sq4el] .delivery-standard-select .fab,
[b-s53y6sq4el] .delivery-standard-select svg,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle i,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .fa,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .fas,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .far,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .fal,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .fab,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle svg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* 隐藏输入组中的附加元素（可能包含箭头） */
[b-s53y6sq4el] .delivery-standard-select .input-group-append,
[b-s53y6sq4el] .delivery-standard-select .input-group-prepend,
[b-s53y6sq4el] .delivery-standard-select .input-group-text {
    display: none !important;
    visibility: hidden !important;
}

/* 确保下拉箭头背景图也被移除 */
[b-s53y6sq4el] .delivery-standard-select .form-select,
[b-s53y6sq4el] .delivery-standard-select select {
    background-image: none !important;
    background-position: unset !important;
    background-repeat: no-repeat !important;
    background-size: unset !important;
    padding-right: 0 !important;
}

/* 确保文本内容正常显示 - 针对 BootstrapBlazor Select 组件的各种可能结构 */
[b-s53y6sq4el] .delivery-standard-select * {
    color: #212529 !important;
}

[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle,
[b-s53y6sq4el] .delivery-standard-select .form-select option,
[b-s53y6sq4el] .delivery-standard-select select option,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle span,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .form-select,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .selected-item,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle button,
[b-s53y6sq4el] .delivery-standard-select .dropdown-toggle .btn,
[b-s53y6sq4el] .delivery-standard-select .form-select:disabled {
    color: #212529 !important;
    background-color: transparent !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: none !important;
    -webkit-text-fill-color: #212529 !important;
}

/* 确保禁用状态下的 Select 也能显示文本 */
[b-s53y6sq4el] .delivery-standard-select select:disabled,
[b-s53y6sq4el] .delivery-standard-select .form-select:disabled {
    color: #212529 !important;
    -webkit-text-fill-color: #212529 !important;
    opacity: 1 !important;
}
/* /Pages/THouseImage/THouseImage.razor.rz.scp.css */
.page-layout-option[b-0bs9ac9d0i] {
    margin-top: 1.5rem;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: var(--bs-border-radius);
    padding: 1.5rem 1rem 1rem 1rem;
    position: relative;
}

    .page-layout-option > p[b-0bs9ac9d0i] {
        position: absolute;
        top: -10px;
        padding: 0 0.5rem;
        background: #fff;
    }

    .page-layout-option .page-layout-option-height[b-0bs9ac9d0i] {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .page-layout-option .tabs-body-content[b-0bs9ac9d0i] {
        margin: 0 -1rem -2rem -1rem;
    }
/* 基础信息样式优化 */
.row[b-0bs9ac9d0i] {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.col-6[b-0bs9ac9d0i] {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.info-field[b-0bs9ac9d0i] {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 2.5rem;
}

.info-label[b-0bs9ac9d0i] {
    min-width: 90px;
    width: 90px;
    margin: 0;
    margin-right: 1rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    line-height: 1.5;
}

.info-value[b-0bs9ac9d0i] {
    flex: 1;
    color: #212529;
    font-size: 0.95rem;
    word-break: break-word;
    line-height: 1.5;
    min-width: 0;
    display: flex;
    align-items: center;
}

.info-value[b-0bs9ac9d0i]  .form-label {
    margin: 0;
    font-weight: 500;
    color: #212529;
    padding: 0;
    background-color: transparent;
    border: none;
    min-height: auto;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

/* Card BodyTemplate 左右内边距（约五个字符宽度） */
.card-body-content[b-0bs9ac9d0i] {
    padding-left: 10ch;
    padding-right: 10ch;
}

/* 保存和取消按钮样式 - 居中显示，宽度为默认的1.5倍 */
.save-cancel-buttons[b-0bs9ac9d0i] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.save-cancel-buttons[b-0bs9ac9d0i]  .btn {
    min-width: 120px;
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.splitting[b-0bs9ac9d0i] {
    max-width: 35rem;
    min-width: 25rem;
    width: auto;
}

.splitting[b-0bs9ac9d0i]  * {
    font-size: 2rem !important;
    font-weight: 600;
    line-height: 1.5;
}

/* 确保 Splitting 组件内部元素也放大 */
.splitting[b-0bs9ac9d0i]  .splitting-text,
.splitting[b-0bs9ac9d0i]  span,
.splitting[b-0bs9ac9d0i]  div {
    font-size: 2rem !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .info-label[b-0bs9ac9d0i] {
        margin-bottom: 0.375rem;
    }
}
/* /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;
}
