/* Keep location context useful without letting it dominate the inline form. */
.self-report-fields {
  grid-template-columns: 150px 145px 130px 130px 118px auto;
  justify-content: start;
}

.self-report-fields #selfLocation {
  flex: 0 1 145px;
  max-width: 145px;
}

@media (max-width: 760px) {
  .self-report-fields { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .self-report-fields #selfLocation { max-width: none; }
}
