/* extracted from dev/board.html */

body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      margin: 0;
      padding: 0;
      background: #0f172a;
      color: #e5e7eb;
    }
    header {
      padding: 1rem 1.5rem;
      background: #020617;
      border-bottom: 1px solid #1f2937;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header h1 {
      margin: 0;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #a5b4fc;
    }
    header span {
      font-size: 0.8rem;
      color: #9ca3af;
    }
    main {
      padding: 1.5rem;
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 900px) {
      main {
        grid-template-columns: 2fr 2fr 1.4fr;
        align-items: flex-start;
      }
    }
    section {
      background: #020617;
      border-radius: 0.75rem;
      border: 1px solid #1f2937;
      padding: 1rem 1.1rem 1.2rem;
      box-shadow: 0 18px 40px rgba(0,0,0,0.55);
    }
    section h2 {
      margin: 0 0 0.5rem;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #9ca3af;
    }
    section small {
      display: block;
      margin-bottom: 0.4rem;
      font-size: 0.7rem;
      color: #6b7280;
    }
    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    li {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      padding: 0.4rem 0;
      border-bottom: 1px dashed #1f2937;
    }
    li:last-child {
      border-bottom: none;
    }
    input[type="checkbox"] {
      margin-top: 0.1rem;
      accent-color: #4ade80;
      cursor: pointer;
    }
    .task-title {
      font-size: 0.85rem;
    }
    .task-meta {
      font-size: 0.7rem;
      color: #6b7280;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0.1rem 0.55rem;
      font-size: 0.7rem;
      border: 1px solid #1f2937;
      color: #9ca3af;
      margin-top: 0.3rem;
    }
    .pill span {
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 999px;
      margin-right: 0.35rem;
      background: #22c55e;
    }
    .pill.later span {
      background: #f97316;
    }
    .pill.next span {
      background: #3b82f6;
    }
    .milestone {
      padding: 0.4rem 0;
      border-bottom: 1px dashed #1f2937;
      font-size: 0.8rem;
    }
    .milestone:last-child {
      border-bottom: none;
    }
    .badge {
      display: inline-block;
      font-size: 0.7rem;
      padding: 0.1rem 0.45rem;
      border-radius: 999px;
      border: 1px solid #1f2937;
      color: #9ca3af;
      margin-left: 0.3rem;
    }
    .small-note {
      font-size: 0.72rem;
      color: #6b7280;
      margin-top: 0.6rem;
    }
    a {
      color: #60a5fa;
      text-decoration: none;
      font-size: 0.8rem;
    }
    a:hover {
      text-decoration: underline;
    }
