/* app.css — supplemental styles beyond Tailwind CDN */

/* Log viewer scrollbar */
#log-container::-webkit-scrollbar { width: 6px; }
#log-container::-webkit-scrollbar-track { background: #1a1a2e; }
#log-container::-webkit-scrollbar-thumb { background: #374151; border-radius: 3px; }

/* Phase bar equal width in narrow viewports */
.phase-bar { min-width: 48px; }

/* Details/summary animation */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details > summary::before { content: "▶ "; font-size: 0.7em; opacity: 0.6; }
details[open] > summary::before { content: "▼ "; }

/* Truncate long cells */
table td.truncate { max-width: 200px; }

/* Prose inside deep-research tab */
.tab-panel details .prose { font-family: inherit; }
