#app-global-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(1px);
}

#app-global-loading-overlay.app-global-loading-visible {
    display: flex;
}

.app-global-loading-panel {
    min-width: 190px;
    padding: 22px 28px;
    text-align: center;
    color: #344054;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.18);
}

.app-global-loading-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    border: 4px solid #e4e7ec;
    border-top-color: #f79009;
    border-radius: 50%;
    animation: app-global-loading-spin 0.8s linear infinite;
}

.app-global-loading-text {
    font-size: 14px;
    font-weight: 600;
}

@keyframes app-global-loading-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .app-global-loading-spinner { animation-duration: 1.6s; }
}
