/* Hide vehicle rows 2-10 by default (before JS loads). */
.er-vehicle-hidden {
  display: none;
}

/* Vehicle choice fields: stack on mobile, row on desktop. */
@media (min-width: 641px) {
  .er-choice-field {
    display: inline-block;
    width: 30% !important;
    vertical-align: top;
    margin-right: 2% !important;
  }
}

/* Vehicle action buttons. */
.er-vehicle-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 20px;
}

.er-vehicle-actions .button {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 14px;
}

.er-add-vehicle {
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.er-add-vehicle:hover {
  background-color: #005a87;
  color: #fff;
}

.er-remove-vehicle {
  background-color: #dc3232;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.er-remove-vehicle:hover {
  background-color: #a82222;
  color: #fff;
}

.er-vehicle-count {
  color: #666;
  font-size: 13px;
  font-style: italic;
}
