/* Money inputs are whole pounds only (Task #1362): hide the browser's
   up/down spinner arrows on any input marked .money-input. Values with
   pence still display and can still be typed — only the spinners go. */
input.money-input::-webkit-inner-spin-button,
input.money-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input.money-input {
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield;
}
