.chapter-progress {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.chapter-progress-bar {
    flex: 1;
    height: 6px;
    background: var(--surface-bg);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.chapter-progress-fill {
    height: 100%;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.chapter-progress-label {
    font-size: var(--caption);
    color: var(--text-muted);
    flex-shrink: 0;
}
