/* site.css — shared stylesheet for the generated model pages
   (public/models/*.html reference /assets/site.css). Mirrors the main app's
   dark utility theme so SEO landings and the checker read as one site. */
:root {
  --bg: #0d1117;
  --bg-card: #161b22;
  --border: #2d333c;
  --text: #e6e9ee;
  --text-muted: #8b949e;
  --accent: #4c8dff;
  --green: #3fb950;
  --yellow: #d4a72c;
  --red: #f85149;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.65;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

h1 { line-height: 1.35; }
a { color: var(--accent); }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.85rem;
  margin: 16px 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
th, td {
  border: 1px solid var(--border);
  padding: 6px 10px;
  text-align: left;
}
thead th { background: var(--bg-card); }

.v-green { color: var(--green); }
.v-yellow { color: var(--yellow); }
.v-red { color: var(--red); }

.note { color: var(--text-muted); font-size: 0.85rem; }

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  margin: 8px 0;
}

#cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 24px;
}
#cta a { font-weight: 600; }

.disclosure {
  color: var(--text-muted);
  font-size: 0.75rem;
  border-top: 1px dashed var(--border);
  padding-top: 8px;
  margin-bottom: 0;
}
