:root { color-scheme: light; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #f6f7f9; color: #16181d; }
* { box-sizing: border-box; }
body { margin: 0; }
main { max-width: 1180px; margin: 0 auto; padding: 24px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
h1 { margin: 0; font-size: 28px; line-height: 1.2; }
h2 { margin: 0 0 12px; font-size: 18px; }
p { margin: 6px 0 0; color: #69707d; }
button { border: 1px solid #cfd5df; background: white; color: #16181d; height: 36px; padding: 0 14px; border-radius: 6px; cursor: pointer; }
button:hover { background: #eef2f7; }
.metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.metrics div, .panel { background: white; border: 1px solid #e0e4eb; border-radius: 8px; }
.metrics div { padding: 16px; min-width: 0; }
.metrics span { display: block; color: #69707d; font-size: 13px; margin-bottom: 8px; }
.metrics strong { font-size: 22px; white-space: nowrap; }
.panel { padding: 16px; margin-bottom: 18px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 10px 8px; border-bottom: 1px solid #edf0f4; white-space: nowrap; }
th { color: #69707d; font-weight: 600; background: #fafbfc; }
.num { text-align: right; font-variant-numeric: tabular-nums; }
.up { color: #c93636; }
.down { color: #1f8a55; }
.empty { color: #69707d; padding: 18px 8px; }
@media (max-width: 760px) {
  main { padding: 16px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  h1 { font-size: 22px; }
  .metrics strong { font-size: 18px; }
}
