/* -------- Vehicle search bar - updated -------- */
:root{
  --veh-bg: #2f3740;
  --veh-input-bg: #eef2f4;
  --veh-title: #ffffff;
  --veh-height: 42px;
  --veh-radius: .25rem;
  --veh-gap: 15px;
}

.vehicle-bar{
  background: var(--veh-bg);
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.vehicle-bar__title{
  display: block;
  color: var(--veh-title);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 1rem;
  margin-bottom: 4px;
}

.vehicle-select.form-select{
  background-color: var(--veh-input-bg);
  border: 0;
  border-radius: var(--veh-radius);
  height: var(--veh-height);
  padding-left: 14px;
  padding-right: 34px;
  line-height: var(--veh-height);
  box-shadow: none;
  width: 100%;
}

.vehicle-select.form-select:focus{
  border: 0;
  box-shadow: 0 0 0 .2rem rgba(255,255,255,.15);
  background-color: #fff;
}

.vehicle-select.form-select:disabled{
  opacity: .7;
  cursor: not-allowed;
}

/* adjust Bootstrap gutter to 15px */
.vehicle-bar .row.gx-3{
  --bs-gutter-x: var(--veh-gap);
}

@media (max-width: 767px){
    .vehicle-select.form-select{
        margin: 10px 0;
    }
}

/* responsive tweaks */
@media (max-width: 576px){
  .vehicle-bar__title{
    margin-bottom: 10px;
    text-align: center;
  }
}
