/* Style minimal pour le MVP. */
:root {
  --fg: #1a1a1a;
  --bg: #fafafa;
  --accent: #2c5f7c;
  --border: #ddd;
  --muted: #666;
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  margin: 0;
  line-height: 1.5;
}
header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}
.brand {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}
main {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}
h1 { font-weight: 600; margin-top: 0; }
.lede { color: var(--muted); }
fieldset.question {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: white;
}
fieldset.question legend { font-weight: 600; padding: 0 0.5rem; }
.required { color: #c0392b; }
.help { color: var(--muted); font-size: 0.9rem; margin: 0.25rem 0 0.75rem; }
input[type=text], textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
}
.scale-option, .choice-option {
  display: inline-block;
  margin: 0.25rem 1rem 0.25rem 0;
}
button {
  background: var(--accent);
  color: white;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}
button:hover { background: #1f4660; }
.notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
table.data th, table.data td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}
table.data th { background: #f0f0f0; font-weight: 600; }
footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}
.slot-list { list-style: none; padding: 0; }
.slot-list li {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
