.app { display: flex; flex-direction: column; height: 100vh; background: #0c0c0c; } .titlebar { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; padding: 6px 12px; background: #1a1a1a; border-bottom: 1px solid #2a2a2a; font-size: 12px; color: #aaa; user-select: none; } .titlebar .label { font-weight: 600; color: #ddd; } .distros, .presets { display: flex; gap: 4px; align-items: center; } .distro-btn, .preset-btn, .palette-btn { font: inherit; font-family: "Cascadia Mono", "JetBrains Mono", "Consolas", monospace; font-size: 11px; background: #222; color: #aaa; border: 1px solid #333; border-radius: 3px; padding: 2px 8px; cursor: pointer; } .distro-btn:hover, .preset-btn:hover, .palette-btn:hover { background: #2a2a2a; color: #ddd; } .distro-btn.active { background: #1a3a5c; color: #cce6ff; border-color: #2a5a8c; } .preset-btn { min-width: 28px; text-align: center; } .muted { color: #666; font-style: italic; } .layout-info { margin-left: auto; font-family: "Cascadia Mono", "JetBrains Mono", "Consolas", monospace; color: #777; font-size: 11px; } .pane-wrap { flex: 1 1 auto; min-height: 0; position: relative; }