.search-box-container {
  position: relative;
  width: 340px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}
.search-box-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1.5px solid #ccc;
  border-radius: 16px;
  font-size: 18px;
  outline: none;
  box-sizing: border-box;
}
.search-box-icon {
  position: absolute;
  right: 16px;
  top: 13px;
  font-size: 20px;
  color: #888;
  pointer-events: none;
}
.suggestions-dropdown {
  position: absolute;
  min-height: 50px;
  top: 48px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 9999;
  max-height: 350px;
  overflow-y: auto;
  padding: 0;
}
.suggestion-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.suggestion-item:hover, .suggestion-item.active {
  background: #f2f2f2;
}
.suggestion-label {
  font-size: 16px;
  color: #222;
  font-weight: bold;
}
.suggestion-desc {
  font-size: 13px;
  color: #666;
  margin-left: 4px;
}