/* webapp/static/style.css */
:root { color-scheme: light dark; --line:#8884; }
* { box-sizing: border-box; }
body { font: 15px/1.5 system-ui, sans-serif; margin: 0; }
header { display: flex; align-items: center; gap: 1rem; padding: .6rem 1rem;
  border-bottom: 1px solid var(--line); }
header .brand { font-weight: 700; text-decoration: none; color: inherit; }
header .nav { text-decoration: none; color: inherit; opacity: .8; }
header .nav:hover { opacity: 1; text-decoration: underline; }
header .asof { font-size: 12px; opacity: .6; }
header .who { margin-left: auto; opacity: .7; }
form.inline { display: inline; }
main { padding: 1rem; max-width: 1100px; }
.flash { padding: .5rem 1rem; background: #fe9; color: #222; }
.counts { display: flex; gap: 1rem; margin-bottom: 1rem; }
.counts span { padding: .2rem .6rem; border: 1px solid var(--line); border-radius: 6px; }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; margin-bottom: 1rem; }
.filters .btn, .btn { padding: .3rem .6rem; border: 1px solid var(--line);
  border-radius: 6px; text-decoration: none; color: inherit; }
.note { opacity: .75; font-style: italic; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: .35rem .5rem; border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums; }
tr.cand { background: #ffcc0018; }
.badge { font-size: 12px; padding: .1rem .4rem; border-radius: 10px; border: 1px solid var(--line); }
.s-reported_aws, .s-reported_google { background: #2a72; }
.badge-candidate { background: #e6a80022; border-color: #e6a80088; }
.s-false_positive, .s-ignore { opacity: .6; }
.card { display: flex; flex-direction: column; gap: .6rem; max-width: 420px;
  padding: 1rem; border: 1px solid var(--line); border-radius: 8px; }
.card.card, form.card { max-width: 640px; }
.evidence { display: grid; grid-template-columns: max-content 1fr; gap: .1rem .8rem; }
.evidence dt { opacity: .7; }
textarea { width: 100%; font: 13px/1.4 ui-monospace, monospace; }
details { margin: .6rem 0; }
