:root {
  --bg: #0d1117;
  --surface: #161b22;
  --border: #30363d;
  --text: #c9d1d9;
  --muted: #8b949e;
  --green: #3fb950;
  --link: #58a6ff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1 { font-size: 1.6rem; margin-bottom: 0.25rem; }

.subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tr:last-child td { border-bottom: none; }

tr.below { background: rgba(63, 185, 80, 0.07); }
tr.below .price { color: var(--green); font-weight: 700; }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.price { font-weight: 600; }
.threshold { color: var(--muted); }
.ts { color: var(--muted); font-size: 0.85rem; }
.status { font-size: 1.1rem; text-align: center; }

.operator { color: var(--muted); font-size: 0.85rem; }
.muted { color: var(--muted); }
.price--below { color: var(--green); font-weight: 700; }
.badge { color: var(--green); font-weight: 600; }

.empty {
  color: var(--muted);
  padding: 2rem;
  text-align: center;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
