/* style.css - minimal, clean UI */
:root { --primary:#1F7A4D; --primary-dark:#005046; }
* { box-sizing:border-box; }
body { font-family: 'Noto Sans KR', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
       background:#f6f7f8; color:#111; margin:0; }
.wrap { max-width:860px; margin:0 auto; padding:40px 20px; }
h1,h2,h3 { color:var(--primary-dark); margin:0 0 16px; }
.menu { list-style:none; padding:0; display:flex; gap:10px; flex-wrap:wrap; }
.note { color:#555; margin-top:20px; }
.form { display:grid; gap:12px; max-width:460px; margin:16px auto; background:#fff; padding:20px; border-radius:12px; box-shadow:0 3px 10px rgba(0,0,0,.05); }
label { display:grid; gap:6px; text-align:left; font-weight:600; color:#333; }
input[type="text"] { padding:10px 12px; border:1px solid #d8dee4; border-radius:8px; font-size:16px; }
.btn { display:inline-block; background:var(--primary); color:#fff; padding:10px 16px; border-radius:10px; text-decoration:none; font-weight:700; }
.btn:hover { background:var(--primary-dark); }
.alert { margin-top:10px; font-weight:700; color:var(--primary-dark); }
.link { color:var(--primary-dark); text-decoration:none; }
.missions { list-style:none; padding:0; background:#fff; border-radius:12px; box-shadow:0 3px 10px rgba(0,0,0,.05); }
.missions li { padding:14px 16px; border-bottom:1px solid #eee; }
.missions li:last-child { border-bottom:none; }
.grid { display:flex; gap:10px; justify-content:center; margin:14px 0 0; flex-wrap:wrap; }
.table { width:100%; border-collapse:collapse; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 3px 10px rgba(0,0,0,.05); }
.table th, .table td { padding:10px; border-bottom:1px solid #eee; text-align:left; }
.table thead th { background:var(--primary-dark); color:#fff; }
code { background:#fff; padding:2px 6px; border-radius:6px; font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; }
