.vehicle-search__form {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 15px;
  margin: 10px 0;
  background-color: #f8f9fa;
}

.vehicle-search__selects {
  margin-bottom: 15px;
}

.vehicle-search__select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.fitment-fits {
  background-color: #f6fff3;
  border: 2px solid #4a8325;
  border-radius: 4px;
  padding: 15px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fitment-no-fit {
  background-color: #fff2f2;
  border: 2px solid #dc3545;
  border-radius: 4px;
  padding: 15px;
  margin: 10px 0;
}

.fitment-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.fitment-icon {
  color: #4a8325;
  font-size: 24px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.fitment-icon-error {
  color: #dc3545;
  font-size: 24px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.fitment-label {
  color: #4a8325;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 5px;
}

.fitment-label-error {
  color: #dc3545;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 5px;
}

.fitment-vehicle {
  font-weight: 500;
  color: #333;
  margin-top: 4px;
  display: inline-block;
}

.change-vehicle-link {
  color: #666;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: normal;
  font-size: 0.9em;
}

.change-vehicle-link:hover {
  color: #4a8325;
  text-decoration: none;
}

.fitment-heading {
  margin: 15px 0 10px 0;
  font-weight: 600;
  font-size: 1em;
}

.fitment-button {
  display: inline-block;
  background: #4a8325;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}

.error-message {
  color: #dc3545;
  margin-top: 10px;
}

.vehicle-search__select:last-child {
  margin-bottom: 0;
}

.vehicle-search__select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
 