.cwtcontainer-search-and-name {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.3s ease;
  background: #EFEFEF;
}

.search-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
}

.search-input {
  font-family: "Open Sans", serif;
  width: 90%;        /* default width for mobile */
  max-width: 300px;  /* optional limit */
  opacity: 1;
  border: none;
  outline: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
  background: transparent;
}

.search-input:placeholder-shown {
  user-select: none;
}

/* Desktop/tablet screens */
@media (min-width: 769px) {
  .search-input {
    width: 400px;
  }
}

.search-container.active .search-icon path {
  stroke: #0884fc;
}

.search-container .search-icon path {
  stroke: #464455;
}

.matched-tags {
  display: block;
  font-size: 12px;
  color: #0884fc;
  margin-top: 2px;
  margin-left: 40px;
  font-style: italic;
}