.global-progress {
    position: fixed;
    top: 86px;
    right: 24px;
    width: min(390px, calc(100vw - 32px));
    padding: 14px 15px 12px;
    background: #fff;
    border: 1px solid #ded8ff;
    border-radius: 13px;
    box-shadow: 0 16px 45px rgba(29, 22, 72, .2);
    z-index: 1000;
}

.global-progress[hidden] { display: none; }
.global-progress-copy { display: flex; align-items: center; gap: 11px; }
.global-progress-copy > div { min-width: 0; flex: 1; }
.global-progress-copy b, .global-progress-copy small { display: block; }
.global-progress-copy b { font: 800 13px Manrope; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.global-progress-copy small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.global-progress-copy strong { color: var(--violet); font-size: 11px; }
.global-progress-spinner { width: 22px; height: 22px; border: 3px solid #e8e3ff; border-top-color: var(--violet); border-radius: 50%; animation: global-progress-spin .75s linear infinite; }
.global-progress-track { height: 5px; margin-top: 11px; overflow: hidden; background: #eeeafc; border-radius: 6px; }
.global-progress-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--violet), #a58cff); border-radius: 6px; transition: width .35s ease; }
.global-progress-track span.indeterminate { animation: global-progress-slide 1.1s ease-in-out infinite; }
button:disabled { cursor: not-allowed !important; opacity: .55 !important; box-shadow: none !important; }

@keyframes global-progress-spin { to { transform: rotate(360deg); } }
@keyframes global-progress-slide { from { transform: translateX(-120%); } to { transform: translateX(310%); } }
@media (max-width: 650px) { .global-progress { top: 80px; right: 16px; } }
