/* ── Worker Task 进度组件 ── */
.wt-progress {
    background: #f8f9fb;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.2rem;
}

.wt-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.wt-status {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2563eb;
}

.wt-percent {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    font-family: 'Fira Code', monospace;
}

.wt-progress-bar {
    height: 8px;
    background: #e8eaf0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.wt-progress-bar-fill {
    height: 100%;
    background: #2563eb;
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.wt-message {
    font-size: 0.88rem;
    color: #666;
    margin: 0 0 0.4rem;
}

.wt-notice {
    font-size: 0.82rem;
    color: #999;
    margin: 0;
}

.wt-progress.wt-completed .wt-status {
    color: #059669;
}

.wt-progress.wt-completed .wt-progress-bar-fill {
    background: #059669;
}

.wt-progress.wt-failed .wt-status {
    color: #dc2626;
}

.wt-progress.wt-failed .wt-progress-bar-fill {
    background: #dc2626;
}
