* { box-sizing: border-box; }
:root {
  --bg: #0e0f14;
  --panel: #161a24;
  --ink: #e6e8ef;
  --muted: #9aa3b2;
  --accent: #6ee7b7;
  --accent-ink: #0b1a13;
}
html, body {
  margin: 0; padding: 0;
  background: radial-gradient(1200px 600px at 80% -10%, #16202f, transparent), var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  min-height: 100%;
}
.app-header { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.app-header h1 { margin: 0; font-weight: 800; letter-spacing: -0.02em; font-size: 26px; }
.app-header h1 span { color: var(--muted); font-weight: 600; font-size: 16px; margin-left: 10px; }
.container { width: min(1100px, 94vw); margin: 28px auto 60px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); margin-bottom: 24px; }
.card h2 { margin: 0 0 14px 0; font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; background: #0f1420; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; color: var(--ink); padding: 12px 12px; outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.btn { margin-top: 12px; background: var(--accent); color: var(--accent-ink); border: 0; padding: 12px 16px; font-weight: 700; border-radius: 12px; cursor: pointer; transition: transform .05s ease; }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid rgba(255,255,255,0.2); }
.progress { position: relative; height: 12px; margin-top: 14px; background: #0b0f18; border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.progress .bar { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: linear-gradient(90deg, var(--accent), #86efac); transition: width .2s ease; }
.progress span { display: block; font-size: 12px; color: var(--muted); margin-top: 8px; }
.results .header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.table-wrap { width: 100%; overflow: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th { position: sticky; top: 0; background: #111725; color: var(--muted); text-align: left; padding: 12px; }
tbody td { padding: 12px; border-top: 1px solid rgba(255,255,255,0.06); vertical-align: top; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
.app-footer { text-align: center; color: var(--muted); padding: 20px; font-size: 13px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
.highlight {
  color: #00bcd4;
  font-family: 'Pacifico', cursive;
  font-size: 55px; /* bigger and more eye-catching */
  letter-spacing: 1px;
  text-shadow: 0 0 8px #00bcd4, 0 0 15px #00bcd4; /* optional glow */
}
