/* DBLM Predictive Search Styles with Layout Fix */
.dblm-search-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-radius: 50px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dblm-predictive-search {
  flex: 1 1 auto;
  width: 100%;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #333;
}

.dblm-predictive-search::placeholder {
  color: #999;
  font-style: italic;
}

.dblm-search-button {
  background-color: #D4A011;
  border: none;
  padding: 14px !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  cursor: pointer;
}

.dblm-search-button svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

.dblm-predictive-results {
  display: none;
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  border: 1px solid #ccc;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.dblm-predictive-results::-webkit-scrollbar {
  width: 6px;
}
.dblm-predictive-results::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
.dblm-predictive-results li {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.dblm-predictive-results li a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.dblm-predictive-results li a strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.dblm-predictive-results li a small {
  color: #666;
  font-size: 12px;
  line-height: 1.3;
}

.dblm-predictive-results.show {
  display: block !important;
}
