.search-input {
  background-color: rgba(23, 31, 42, 0.7);
  border: 1px solid rgba(0, 194, 203, 0.3);
  color: #e0e0e0;
  padding: 0.75rem 3rem 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 5px rgba(0, 194, 203, 0.1);
  outline: none;
  font-size: 1rem;
}

.search-input:focus {
  border-color: rgba(0, 194, 203, 0.8);
  box-shadow: 0 0 15px rgba(0, 194, 203, 0.4);
}

.search-input::placeholder {
  color: #4a5568;
}

#search-results-view {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 1rem;
  max-height: calc(100vh - 350px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.search-result-card {
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(23, 31, 42, 0.5);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.search-result-card:hover {
  background-color: rgba(0, 194, 203, 0.1);
  border-color: rgba(0, 194, 203, 0.5);
  transform: translateY(-3px);
}

.search-result-card h4 {
  font-weight: 700;
  color: #00c2cb;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.search-result-card p {
  font-size: 0.875rem;
  color: #a0aec0;
}

.search-result-card p.text-gray-500 {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

#search-results-view::-webkit-scrollbar {
  width: 8px;
}

#search-results-view::-webkit-scrollbar-track {
  background: rgba(23, 31, 42, 0.5);
  border-radius: 10px;
}

#search-results-view::-webkit-scrollbar-thumb {
  background: rgba(0, 194, 203, 0.4);
  border-radius: 10px;
}

#search-results-view::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 194, 203, 0.6);
}
