.band-search-container {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 1rem;
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 280px;
  overflow-y: auto;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease;
}

.search-results-dropdown.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  max-height: none;
  overflow: hidden;
}

.selected-bands-container {
  min-height: 100px;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  background: #f8f9fa;
}

.selected-band-item {
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 8px;
  background: white;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  transition: all 0.2s;
  animation: fadeIn 0.3s ease;
}

.selected-band-item:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.band-search-result-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.band-search-result-item:hover {
  background-color: #f0f0f0;
}

.band-search-result-item.create-new {
  background-color: #e8f4fc;
  border-top: 1px solid #dee2e6;
  justify-content: center;
  font-weight: 500;
  color: #0d6efd;
  position: sticky;
  bottom: 0;
}

.band-search-result-item.create-new:hover {
  background-color: #d1e7fa;
}

.band-img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.band-info {
  margin-left: 12px;
  line-height: 1.2;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  width: 100%;
  padding: 15px 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
