/* v6 공용 디자인 토큰 — 유저/관리자 공유. v4 합류 지점.
   목업 v6_front_mock_25.html · v6_admin_mock_1.html 의 :root 값과 동일. 임의 변경 금지. */
:root{
  --bg:#060a10; --root:#0d1117; --top:#0a0d13; --card:#111827;
  --line:#1c2333; --line2:#2d333b;
  --tx:#e6edf3; --mu:#8b949e; --dim:#5b6472;
  --blue:#1b6ef3; --blue2:#4d9fff; --teal:#00d4aa; --red:#f85149; --amber:#e3b341;
  --r:14px; --r2:8px;
}
/* 글자 크기: 목업의 값을 그대로 쓴다. 새 크기(변수 포함)를 만들지 말 것. */
*{box-sizing:border-box;margin:0;padding:0}
body{
  background:var(--bg); color:var(--tx);
  font-family:Inter,-apple-system,"Segoe UI","Apple SD Gothic Neo","Malgun Gothic",sans-serif;
  min-height:100vh; padding:24px; display:flex; justify-content:center;
}
