.azilen-llm-search-wrap {
  display: flex;
  align-items: center;
  padding: 8px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  gap: 8px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.azilen-llm-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 20px;
  background: #f5f5f5;
}

.azilen-llm-suggestions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.azilen-llm-suggestion {
  padding: 6px 14px;
  border-radius: 9999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.azilen-llm-suggestion:hover {
  background: #222;
}

/* Icons */
.azilen-llm-search-icon,
.azilen-llm-close-icon {
  flex-shrink: 0;
  background: #111;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.azilen-llm-search-icon img.iconserch {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

/* Closed state */
.azilen-llm-search-wrap.closed {
  justify-content: flex-end;
  padding: 6px 10px;
}

.azilen-llm-search-wrap.closed .azilen-llm-search-input,
.azilen-llm-search-wrap.closed .azilen-llm-suggestions,
.azilen-llm-search-wrap.closed .azilen-llm-close-icon {
  display: none;
}
