/* Location Icon */
.jd-icon-left {
  width: 22px;
  height: 22px;
}

/* Search Form */
.jd-header-search {
  display: flex;
  gap: 10px;
  flex: 1;
  margin: 0 0px;
  max-width: 500px;
}

/* Common Box Style */
.jd-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 0px 5px;
  position: relative;
  flex: 1;
  max-width: 100%;
}

/* Location Box */
.jd-location {
  max-width: 220px;

}

.jd-location input,
.jd-query input {
  border: none;
  outline: none;
  font-size: 17px;
  width: 100%;
  background: transparent;
  padding-left: 5px;
  line-height: 2.0;
}

/* Query Box Specifics */
.jd-query {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

/* Mic Icon */
.jd-mic-icon {
  width: 24px;
  height: 26px;
  margin-left: 5px;
  cursor: pointer;
}

/* Search Button */
.jd-search-btn {
  background: #ff5b00;
  border: none;
  border-radius: 6px;
  margin-left: 5px;
  cursor: pointer;
  margin-top: 3px;
  margin-bottom: 3px;
  width: 36px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jd-search-btn img {
  width: 16px;
  height: 16px;
}

