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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0B0D10;
  color: #E4E6EB;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

#status {
  margin: 1rem 0;
  color: #8A8F9A;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #1E2028;
}

th {
  color: #8A8F9A;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  user-select: none;
}

th:hover {
  color: #E4E6EB;
}

td {
  font-size: 0.95rem;
}

td.price {
  font-weight: 600;
  color: #22C55E;
}

a {
  color: #60A5FA;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.empty-state {
  text-align: center;
  color: #8A8F9A;
  padding: 2rem;
}
