:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #d1d5db;
  --accent: #2563eb;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--bg); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 24px; }
.hero { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
button, .importLabel { background: var(--accent); color: white; border: none; border-radius: 10px; padding: 10px 14px; cursor: pointer; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; }
.importLabel input { display: none; }
.section { background: var(--card); border-radius: 18px; padding: 18px; box-shadow: 0 8px 28px rgba(0,0,0,.06); margin-bottom: 18px; }
.section h2 { margin-top: 0; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid var(--line); padding: 10px 8px; vertical-align: top; }
.table th { text-align: left; font-size: 14px; color: var(--muted); }
.table input, .table textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 8px; font: inherit; background: #fff; }
.table textarea { min-height: 52px; resize: vertical; }
.badge { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #eef2ff; color: #3730a3; font-weight: 600; }
.muted { color: var(--muted); }
footer { margin-top: 18px; }
@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .table { display: block; overflow-x: auto; }
}
@media print {
  body { background: white; }
  .wrap { max-width: none; padding: 0; }
  .section { box-shadow: none; padding: 0; margin-bottom: 16px; }
  .no-print { display: none !important; }
  button, .importLabel { display: none !important; }
}
