/* Shared control dimensions: public forms and the editorial dashboard. */
:root { --control-height: 48px; --control-radius: 4px; }
body input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="submit"]):not([type="button"]),
body select:not([multiple]) {
  box-sizing: border-box;
  height: var(--control-height);
  min-height: var(--control-height);
  min-width: 0;
  padding: 11px 12px;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--control-radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
body select:not([multiple]) {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-image: url('/static/control-chevron.svg');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}
body button, body .button, body input[type="submit"], body input[type="button"] {
  box-sizing: border-box;
  min-height: var(--control-height);
  padding: 11px 18px;
  border-radius: var(--control-radius);
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body textarea, body select[multiple] {
  box-sizing: border-box;
  min-height: 96px;
  padding: 11px 12px;
  border-radius: var(--control-radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
body input[type="file"] {
  min-height: var(--control-height);
  padding: 7px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}
input[type="file"]::file-selector-button {
  min-height: 32px;
  margin: 0 10px 0 0;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--wash);
  color: var(--ink);
  font: inherit;
  line-height: 24px;
  cursor: pointer;
}
body input[type="checkbox"], body input[type="radio"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--blue);
}
.check { min-height: 44px; }
body .filters > a {
  min-height: var(--control-height);
  padding: 11px 10px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body .quiet { min-height: 44px; padding: 8px 0; font-size: 13px; }
@media (forced-colors: active) {
  body select:not([multiple]) { appearance: auto; background-image: none; padding-right: 12px; }
}
