/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #2c2c2e;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 1000;
}

.search-suggestions.active {
  max-height: 400px;
  opacity: 1;
  overflow-y: auto;
}

.suggestion-loading {
  padding: 15px;
  text-align: center;
  color: #86868b;
  font-size: 14px;
}

.suggestion-loading i {
  margin-right: 8px;
}

.no-suggestions {
  padding: 15px;
  text-align: center;
  color: #86868b;
  font-size: 14px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.suggestion-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.suggestion-item img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 15px;
}

.suggestion-item img.artist-img {
  border-radius: 50%;
}

.suggestion-info {
  flex: 1;
}

.suggestion-title {
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 3px;
}

.suggestion-subtitle {
  font-size: 12px;
  color: #86868b;
}

.view-all-results {
  padding: 12px 15px;
  background-color: rgba(0, 113, 227, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: background-color 0.2s;
}

.view-all-results:hover {
  background-color: rgba(0, 113, 227, 0.2);
}

.view-all-results a {
  color: #0071e3;
  font-weight: 500;
  font-size: 14px;
  display: block;
}

.view-all-results i {
  margin-right: 6px;
}

.search-box {
  position: relative;
} 