.app .app-search .typeahead__list {
  background-color: #222222;
  color: #fff;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: absolute;
  width: 100%;
  z-index: 1000;
  margin-top: 5px;
}

.app .app-search .typeahead__list .media {
  width: 40px;
  height: 5rem;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.app .app-search .typeahead__list a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 8px;
  border-radius: 4px;
}

.app .app-search .typeahead__list a:hover {
  background-color: #333;
}

.app .app-search .typeahead__list .name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.app .app-search .typeahead__list .name-sub {
  color: #888;
  font-size: 10px !important;
  margin-bottom: 2px;
}

.app .app-search .typeahead__list .text-muted {
  color: #666;
  font-size: 11px !important;
}

/* Loading spinner */
.search-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.search-loading .spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* No results message */
.no-results {
  padding: 15px;
  text-align: center;
  color: #888;
  font-size: 14px;
} 