
.search-container {
  width: 100%;
  margin: 12px;
}

.search-wrapper {
  position: relative;
}

#searchInput {
  width: 75%;
  padding: 16px 20px;
  font-size: 1.1rem;
  border: 1px solid #333;
  border-radius: 12px;
  background: #1a1a1f;
  color: white;
  outline: none;
  transition: all 0.2s;
}

#searchInput:focus {
  border-color: #696969;
}

.suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1e1e24;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 340px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  display: none;
}

.suggestion-item {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.15s;
}

.suggestion-item:hover,
.suggestion-item:focus {
  background: #2a2a35;
  outline: none;
}

.suggestion-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #111;
}

.suggestion-text {
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.results-container {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.result-card {
  background: #1a1a1f;
  border: 1px solid #2a2a35;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 20px;
}

.result-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.result-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}