# Docview Template Refresh Tasks
- [x] Review canonical document-view UX references (Zed, gpui-component repo, external doc-view guidelines) and capture actionable notes.
- [x] Sketch the target layout architecture (sidebar, tab bar, editor body, optional dock placement) and list required template changes per module.
- [x] Update `WorkspaceTheme` tokens to match the simplified layout (spacing, colors, typography) and remove unused chrome styles.
- [x] Refactor `AppView` to render the streamlined document view (minimal header, central pane, single sidebar, contextual overlays only when toggled).
- [x] Simplify `PaneGroup` tab strip and editor rendering to highlight documents and syntax content without extra ribbons.
- [x] Redesign dock panels (file tree, settings, terminal) to behave like lightweight sidebar/bottom drawers and ensure they can collapse/expand cleanly.
- [x] Polish modal/picker overlays so they sit above the doc surface without rearranging layout.
- [x] Regenerate a sample project and run `cargo check` plus a manual run to verify appearance and responsiveness.
## Simplify UI Pass
- [x] Assess current screenshot gaps (missing sidebar contrast, heavy chrome) against Zed’s doc-view baseline.
- [x] Rework theme palette to introduce lighter editor canvas + distinct sidebar/drawer contrast.
- [x] Strip header/drawer chrome from `AppView`, keeping only sidebar + tab bar + editor (status text optional).
- [x] Ensure FileTree sidebar is always visible with clear borders, and remove/opt-in terminal drawer for demo.
- [x] Regenerate sample project and verify the simplified UI visually + via `cargo check`.
## Interactivity & Polish
- [x] Make sidebar entries clickable to change the active document in the editor.
- [x] Add a draggable handle between sidebar and editor to resize widths.
- [x] Enable vertical scrollbars for sidebar and editor bodies.
- [x] Regenerate a sample project and run `cargo check` to confirm the behavior.