#searchResults {
  display: none; /* İlk açılışta gizli */
  max-height: 400px;
  overflow-y: auto;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 10px;
  color: #333;
  font-size: 16px;
}

/* Scrollbar güzelleştirme (isteğe bağlı) */
#searchResults::-webkit-scrollbar {
  width: 8px;
}
#searchResults::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}
#searchResults::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Liste elemanlarını biçimlendir */
#searchResults ul {
  padding-left: 20px;
  margin: 0;
}
#searchResults li {
  margin-bottom: 10px;
}
#searchResults a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}
#searchResults a:hover {
  text-decoration: underline;
  color: #0056b3;
}
