/* style.css (MODIFIED minimal redesign) */
*{box-sizing:border-box;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial}
body{margin:0;background:#0f172a;color:#e2e8f0}
a{color:#93c5fd;text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:24px auto;padding:0 16px}
.topbar{display:flex;justify-content:space-between;align-items:center;background:#0b1220;color:#e2e8f0;padding:14px 16px;border-bottom:1px solid #1f2937;position:sticky;top:0}
.topbar .brand{font-weight:700}
.topbar nav a{margin-left:16px}
.topbar nav a.active{font-weight:600;text-decoration:underline}
.card{background:#111827;border:1px solid #1f2937;border-radius:14px;padding:16px;margin-bottom:16px;box-shadow:0 2px 8px rgba(0,0,0,.25)}
.card.emphasis{border-color:#2563eb}
.card.wide{padding:20px}
h1,h2,h3{margin:8px 0 12px;color:#f3f4f6}
label{display:block;margin:8px 0 4px;color:#cbd5e1}
input[type=text],input[type=password],input[type=email],input[type=number],select{width:100%;padding:10px;border:1px solid #334155;border-radius:10px;background:#0b1220;color:#e2e8f0}
input::placeholder{color:#64748b}
.row{display:flex;gap:12px;align-items:center}
button,.btn{background:#2563eb;color:#fff;border:none;border-radius:10px;padding:10px 14px;cursor:pointer;text-decoration:none;display:inline-block}
button:hover,.btn:hover{background:#1d4ed8}
.muted{color:#94a3b8}
.notice{background:#0b1220;border:1px dashed #334155;border-radius:10px;padding:10px;margin-bottom:10px;color:#cbd5e1}
.notice.success{border-color:#16a34a}
.notice.error{border-color:#dc2626}
.alert{padding:10px;border-radius:8px;margin-bottom:10px}
table{width:100%;border-collapse:collapse}
th,td{border:1px solid #1f2937;padding:8px}
#progress-wrap{display:flex;flex-direction:column;gap:8px}
#progress-bar{width:100%;height:12px;background:#1f2937;border-radius:8px;overflow:hidden}
#progress-inner{display:block;height:100%;background:#22c55e}
.badge{padding:2px 8px;border-radius:9999px;font-size:12px}
.badge.gray{background:#334155;color:#cbd5e1}
.badge.blue{background:#1d4ed8;color:#e2e8f0}
.badge.green{background:#15803d;color:#dcfce7}
.badge.red{background:#b91c1c;color:#fee2e2}
.product-row{display:flex;justify-content:space-between;border-bottom:1px solid #1f2937;padding:6px 0}
.status{min-width:90px;text-align:right}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.list{list-style:none;padding:0;margin:0}
.list li{padding:8px 0;border-bottom:1px solid #1f2937}
@media (max-width: 720px){.grid-2{grid-template-columns:1fr}.row{flex-direction:column;align-items:stretch}}
