/* Light theme */
:root { color-scheme: light; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Page */
body {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.wrap { max-width: 900px; margin: 0 auto; padding: 24px; }

h1 { margin: 0; font-size: clamp(1.8rem, 5vw, 2.6rem); }

/* You already removed “card look”, keep it clean */
.card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.row { display:flex; gap:16px; flex-wrap:wrap; align-items:center; justify-content:space-between; }

/* Muted text (subtle gray like ChatGPT UI) */
.muted { font-size: 1.0rem; color: #555; }

/* Buttons + dropdown */
.btn {
  border: 1px solid #d0d0d0;
  background: #f2f2f2;
  color: #111;
  font-size: 1.0rem;
  padding: 6px 12px;
  min-height: 36px;
  border-radius: 12px;
}

.btn:hover { background: #e9e9e9; }
.btn:active { background: #e2e2e2; }

.btn:disabled { opacity: .55; cursor: not-allowed; }

select.btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 4px 10px;
  min-height: 34px;
}

/* Answer buttons */
.choices { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }

.choice {
  width: 100%;
  font-size: 1.05rem;
  padding: 10px 10px;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #d0d0d0;
  background: #f2f2f2;
  color: #111;
  cursor: pointer;
  text-align: center;
}

.choice:hover { background: #e9e9e9; }
.choice:active { background: #e2e2e2; }
.choice:disabled { opacity: .6; cursor: not-allowed; }

/* Timer bar */
.bar {
  height: 12px;
  background: #f1f1f1;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  overflow: hidden;
}

/* Keep your blue fill, just slightly softer */
.fill { height: 100%; width: 100%; background: #3b82f6; }

.grid2 { display:grid; grid-template-columns: 1fr; gap: 16px; margin-top: 16px; }
@media (min-width: 820px) { .grid2 { grid-template-columns: 1fr 1fr; } }

ol { font-size: 1.05rem; margin: 8px 0 0 20px; }

/* Name input */
input {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #111;
  width: min(420px, 100%);
  font-size: 1.0rem;
  min-height: 44px;
  box-sizing: border-box;
}

input::placeholder { color: #888; }

/* Question text (“Klik op Start” / 6×7=?) */
.big {
  font-size: clamp(1.05rem, 3.2vw, 1.5rem);
  font-weight: 800;
}
