/* assets/style.css */
body { font-family: Arial, sans-serif; background:#f6f7fb; margin:0; }
.container { max-width: 980px; margin: 24px auto; padding: 16px; }
.card { background:#fff; border:1px solid #e6e6e6; border-radius:10px; padding:16px; margin-bottom:16px; }
.row { display:flex; gap:12px; flex-wrap:wrap; }
.col { flex:1; min-width: 220px; }
label { display:block; font-weight:600; margin: 10px 0 6px; }
input, select, textarea { width:100%; padding:10px; border:1px solid #ccc; border-radius:8px; box-sizing:border-box; }
textarea { min-height: 80px; font-family: monospace; }
.btn { display:inline-block; padding:10px 14px; border:0; border-radius:8px; cursor:pointer; background:#1f6feb; color:#fff; font-weight:700; }
.btn.secondary { background:#6b7280; }
.btn.danger { background:#dc2626; }
.small { color:#555; font-size: 12px; }
.badge { display:inline-block; padding:4px 8px; border-radius:999px; font-size:12px; background:#eef2ff; }
.flash.ok { background:#ecfdf5; border:1px solid #10b981; padding:10px; border-radius:10px; }
.flash.err { background:#fef2f2; border:1px solid #ef4444; padding:10px; border-radius:10px; }
table { width:100%; border-collapse:collapse; }
th, td { text-align:left; padding:10px; border-bottom:1px solid #eee; font-size:14px; }