.tire-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
}

.tire-filter label {
  font-weight: bold;
}

.tire-filter select {
  padding: 8px 10px;
  height: 40px;
  font-size: 14px;
  min-width: 160px;
  border: 1px solid orange;
  border-radius: 3px;
}

.search-btn {
  height: 40px;
  padding: 0 20px;
  background-color: #2DA544;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.search-btn:hover {
  background-color: #258b3c;
}
