:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --card: #ffffff;
  --text: #1a1f2b;
  --muted: #5f6b7a;
  --accent: #1769ff;
  --border: #dce3ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

h1 {
  margin: 0;
  font-size: 1.8rem;
}

.description {
  color: var(--muted);
  margin-top: 8px;
}

.downloads {
  margin: 20px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.downloads a {
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

#status {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

th {
  background: #f0f4fa;
  position: sticky;
  top: 0;
  z-index: 1;
}

.table-wrap {
  max-height: 70vh;
  overflow: auto;
}
