.searchbarContainer {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 1rem;
  padding: 12px 12px 12px 24px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  gap: 16px;
}

.searchbarContainer i {
  color: #9ca3af;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#uv-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.searchbar {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #1f2937;
  padding: 8px 0;
}

.searchbar::placeholder {
  color: #d1d5db;
  font-weight: 400;
}

/* Add a submit button after your input */
#uv-form button[type="submit"] {
  background: #000;
  color: white;
  border: none;
  border-radius: .75rem;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

#uv-form button[type="submit"]:hover {
  background: #1f2937;
}