/* Global busy overlay for long-running Forge Clarity actions */
.fc-busy-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
}

.fc-busy-overlay.d-none {
    display: none !important;
}

.fc-busy-overlay__panel {
    width: min(22rem, 100%);
    border: 0;
}

.fc-busy-overlay__spinner {
    width: 2.25rem;
    height: 2.25rem;
}

body.fc-busy-active {
    overflow: hidden;
}

body.fc-busy-active a[data-fc-busy-disabled="true"],
body.fc-busy-active button[data-fc-busy-disabled="true"] {
    pointer-events: none;
}
