body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

.tag-dropdown-container {
  position: relative;
  width: 300px;
}

.search-box {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.tag-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 99;
}

.tag-item {
  padding: 10px;
  cursor: pointer;
}

.tag-item:hover {
  background-color: #f0f0f0;
}

.selected-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.selected-tag {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
}

.selected-tag:hover {
  background-color: #0056b3;
}