body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  background: #fff;
  color: #333;
}

#searchbox {
  margin-bottom: 1.5rem;
}

.ais-Hits-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: #fafafa;
  transition: box-shadow 0.2s ease;
  align-items: center;
}

.ais-Hits-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hit-image {
  max-width: 120px;
  max-height: 90px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #eee;
}

.hit-content {
  flex: 1;
}

.hit-title {
  font-weight: bold;
  font-size: 1.25rem;
  color: #0077cc;
  margin-bottom: 0.25rem;
}

.hit-description {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.hit-url {
  font-size: 0.9rem;
  color: #888;
  word-break: break-word;
}
.hit-url a {
  color: inherit;
  text-decoration: none;
} 
.hit-link {
  color: #0077cc;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s;
}
.hit-link:hover {
  color: #ff66b2;
  text-decoration: underline;
}
