/**
 * 局部加载：csg.inlineBusy（util.js）。盖在宿主上，不占文档流。
 * 全页进度仍用 overlay.js。
 */
.csg-inline-busy-host {
    position: relative;
}

.csg-inline-busy {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 0.5rem;
    background: rgba(255, 255, 255, 0.78);
    border-radius: inherit;
    pointer-events: auto;
}

.csg-inline-busy .spinner-border {
    flex-shrink: 0;
    color: var(--csg-muted, #5c6570);
}

.csg-inline-busy-msg {
    font-size: 0.75rem;
    line-height: 1.2;
    color: var(--csg-text-muted, #6c757d);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.csg-inline-busy-msg .en-text {
    margin-left: 0.35em;
}
