/**
 * Tasks Page Styles
 */

.tasks-page,
.batches-page {
    max-width: 1400px;
    margin: 0 auto;
}

/* Progress bar for batches */
.progress-bar {
    height: 6px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-accent);
    transition: width var(--transition-slow);
}

.progress-text {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
}
