/* Colors and basic theme for default variant */
:root {
  --brand: #e76f00;
  --muted: #6b7280;
  --bg: #ffffff;
}
.wrap { border-left:6px solid var(--brand); }
h1 { color:var(--brand); margin-top:0 }
p { color:var(--muted); }
.btn { background:var(--brand); }

/* Common layout styles */
body { font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; background:#f5f6f8; color:#222; margin:0; }
.wrap { max-width:900px; margin:6vh auto; padding:28px; background:#fff; border-radius:8px; box-shadow:0 10px 30px rgba(15,20,30,0.06); }
.actions { margin-top:18px }
.btn { display:inline-block; padding:10px 16px; background:var(--brand); color:#fff; text-decoration:none; border-radius:6px }
.link { color:#1f6feb; text-decoration:none }
