html.is-busy,
html.is-busy * {
    cursor: wait !important;
}

.global-busy-indicator {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: #173244;
    color: #fff;
    box-shadow: 0 10px 30px rgba(20, 35, 45, .25);
    font: 600 14px/1.2 Inter, "Segoe UI", Arial, sans-serif;
}

.global-busy-indicator[hidden] {
    display: none;
}

.global-busy-spinner {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, .38);
    border-top-color: #fff;
    border-radius: 50%;
    animation: global-busy-spin .7s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
    .global-busy-spinner { animation-duration: 1.4s; }
}
