.search-bar {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  max-width: 750px;
  margin: 50px auto;
  /* overflow: hidden; */
}
.search-bar input {
  border: none;
  box-shadow: none;
  border-radius: 20px;
  flex: 1;
  padding-left: 10px;
  font-size: 0.9rem;
  color: #6c757d;
}
.search-bar input:focus {
  outline: none;
  box-shadow: none;
}
.search-bar .divider {
  width: 1px;
  height: 25px;
  background-color: #dee2e6;
  margin: 0 15px;
}
.search-bar .category {
  display: flex;
  align-items: center;
  color: #6c757d;
  cursor: pointer;
}
.search-bar .category i {
  margin-right: 8px;
}
.search-btn {
  background-color: #c4554d;
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 10px 25px;
  font-weight: 500;
}
.search-btn:hover {
  background-color: #b14b43;
}

.one-line-ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-menu {
  width: 100%;
  color:#000;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-top: 5px;
  padding: 0.25rem 0;
  z-index: 9999;
  text-align: left;
}

.tt-suggestion {
  padding: 8px 12px;
  cursor: pointer;
  z-index: 9999;
}

.tt-suggestion:hover {
  background-color: #f8f9fa;
}

/* The gray hint text that appears inline */
.tt-hint {
  color: #aaa !important;  /* gray color */
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  border: none;
  background-color: transparent !important;
  pointer-events: none;
  z-index: 1;
}


.tt-suggestion.tt-cursor,
.tt-suggestion:hover {
  background-color: #EDEFF4 !important;
  color: #000 !important;
}


