/* The whole custom CSS budget: 20 lines, one rule (01-UI-SPEC.md).
   Everything else is stock Bootstrap 5.3.8.

   Hide the number-input spinners. They steal about 20px of a narrow criterion
   column in the Phase 4 scoring grid and sit next to a two-digit field as a
   mistap target. Written now so Phase 4 gets it free. */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
