.ga-run-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    padding: 1rem;
}

.ga-run-overlay[hidden] {
    display: none !important;
}

.ga-run-modal {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 1.75rem 1.75rem 1.5rem;
    animation: gaRunPopIn 0.3s ease;
}

@keyframes gaRunPopIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ga-run-modal h5 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.ga-run-modal .ga-run-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.ga-run-percent {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.ga-run-progress {
    height: 10px;
    border-radius: 999px;
    margin: 0.75rem 0 1rem;
}

.ga-run-progress .progress-bar {
    transition: width 0.35s ease;
    border-radius: 999px;
}

.ga-run-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.ga-run-message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #495057;
    min-height: 1.35rem;
}

.ga-run-spinner {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}
