* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #12141a;
  color: #e6e6e6;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  line-height: 1.5;
}
h1, h2 { color: #fff; }
a { color: #7aa2ff; }
form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 420px; }
input, textarea, select {
  background: #1c1f27;
  border: 1px solid #363b47;
  color: #e6e6e6;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
textarea { min-height: 100px; resize: vertical; }
button {
  background: #4c6fff;
  color: #fff;
  border: none;
  padding: 0.65rem 1.1rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}
button:hover { background: #3d5be0; }
button.secondary { background: #363b47; }
.error { color: #ff6b6b; }
.notice { background: #1c1f27; border: 1px solid #363b47; padding: 1rem; border-radius: 6px; margin: 1rem 0; }
.card { background: #181b22; border: 1px solid #2a2e38; border-radius: 8px; padding: 1.25rem; margin-bottom: 1.25rem; }
.pill { display: inline-block; padding: 0.15rem 0.6rem; border-radius: 999px; font-size: 0.8rem; }
.pill.pending { background: #4d3a1a; color: #ffcf80; }
.pill.approved { background: #1a3d24; color: #7de89a; }
.pill.submitted { background: #1a3d24; color: #7de89a; }
.pill.draft { background: #4d3a1a; color: #ffcf80; }
table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
th, td { text-align: left; padding: 0.5rem; border-bottom: 1px solid #2a2e38; }
.top-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.save-status { font-size: 0.85rem; color: #8a8f9c; min-height: 1.2em; }
.question { margin-bottom: 1rem; }
.question label { display: block; margin-bottom: 0.3rem; font-weight: 600; }
