#uv-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#uv-modal {
    background: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    width: 100%;
    max-width: 420px;
}

/* Progress bar */
.uv-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.uv-prog-step {
    display: flex;
    align-items: center;
    gap: 6px;
}

.uv-prog-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    border: 0.5px solid #ccc;
    color: #888;
    background: #f5f5f5;
    transition: all 0.2s;
    flex-shrink: 0;
}

.uv-prog-dot.done {
    background: #e6f4ea;
    border-color: transparent;
    color: #2e7d32;
}

.uv-prog-dot.active {
    background: #111;
    border-color: transparent;
    color: #fff;
}

.uv-prog-label {
    font-size: 11px;
    color: #888;
}
