:root { --fg:#111; --muted:#666; --accent:#4f46e5; --bg:#fff; --line:#eee; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--fg); background: var(--bg); font-family: system-ui, sans-serif; }
.container { max-width: 760px; margin: 32px auto; padding: 0 16px; }
h1 { margin: 0 0 16px 0; }
label { display:block; margin: 8px 0; }
input, button, select { padding: 10px; font-size: 16px; }
.row { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.hidden { display: none; }
ol { padding-left: 20px; }
li { padding: 10px 0; border-bottom: 1px solid var(--line); }
li small { color: var(--muted); display:block; }
#chips { display:flex; gap:8px; flex-wrap:wrap; margin: 8px 0 12px; }
.chip { border:1px solid var(--line); padding:6px 10px; border-radius: 999px; cursor:pointer; }
.chip:hover { background:#fafafa; }
.conf-labels { display:flex; justify-content: space-between; font-size:12px; color:var(--muted); margin: 8px 0 4px; }
.conf-bar { width:100%; height:10px; background:#f0f0f0; border-radius: 999px; overflow: hidden; }
#confidence { height:100%; background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981); transition: width .25s ease; }
