/* ============================================================
   Proofs lookup — additions on top of tools.css.
   Same nt- design system; np- prefix for proofs-only pieces.
   ============================================================ */

/* Stacked, labelled form. The tools pages use a single-field inline form
   (.nt-mk-form); this one asks for two things and is server-rendered, so it
   stacks and labels properly instead. */
.np-form { margin: 14px 0 0; }
.np-label {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 15px;
  margin: 12px 0 5px;
}
.np-form .nt-input { max-width: 420px; }
.np-submit { margin-top: 18px; }

.np-notice {
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--butter);
  padding: 14px 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* "I don't know my order number" disclosure */
.np-details {
  margin-top: 22px;
  border-top: 1.5px dashed var(--ink);
  padding-top: 16px;
}
.np-details > summary {
  cursor: pointer;
  font-family: "Fredoka", sans-serif;
  font-size: 16px;
  list-style: none;
}
.np-details > summary::-webkit-details-marker { display: none; }
.np-details > summary::before {
  content: "+";
  display: inline-block;
  width: 22px; height: 22px;
  margin-right: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-weight: 700;
  background: var(--cream);
}
.np-details[open] > summary::before { content: "\2212"; }
.np-details > summary:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.np-details > p { margin-top: 12px; }

/* Order chooser (multi-order magic link) */
.np-orders { list-style: none; margin: 14px 0 0; padding: 0; }
.np-orders li { margin-bottom: 12px; }
.np-order {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.np-order:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.np-order:active { transform: translateY(1px); box-shadow: 0 0 0 var(--ink); }
.np-order-main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.np-order-main strong { font-family: "Fredoka", sans-serif; font-size: 17px; }
.np-order-arrow { flex: 0 0 auto; }

@media (max-width: 520px) {
  .np-order { padding: 12px 14px; gap: 8px; }
  .np-order .nt-chip { font-size: 12px; padding: 2px 9px; }
}
