/* Search */
/* Dark blue theme styling */

.form-control {
  background-color: #0d1b2a;
  color: #e0e0e0;
  border: 1px solid #2e3b4e;
  border-radius: 4px;
  padding: 0.375rem 0.75rem;
}

.form-control::placeholder {
  color: #7a8fa6;
}

.form-control:focus {
  outline: none;
  border-color: #415a77;
  box-shadow: 0 0 5px #415a77;
  background-color: #1b263b;
  color: #e0e0e0;
}

.suggestions-list {
  position: absolute;
  background-color: #1b263b;
  border: 1px solid #2e3b4e;
  border-top: none;
  max-height: 150px;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
  margin-top: 0;
  padding-left: 0;
  list-style: none;
  border-radius: 0 0 4px 4px;
  color: #e0e0e0;
}

.suggestions-list li {
  padding: 0.5rem;
  cursor: pointer;
}

.suggestions-list li:hover {
  background-color: #415a77;
}

.selected-tags {
  margin: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.selected-tag {
  background-color: #415a77;
  color: #e0e0e0;
  padding: 0.25rem 0.6rem;
  border-radius: 16px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  user-select: none;
}

.selected-tag .remove-tag {
  cursor: pointer;
  font-weight: bold;
  color: #e0e0e0;
  user-select: none;
}

.selected-tag .remove-tag:hover {
  color: #ff5555;
}


.form-group {
  position: relative;
}

