
#searchInput {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background-color: #555;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #777;
}

.result {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #444;
}

.result-inner {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.result-text .title {
  font-weight: bold;
  font-size: 18px;
}

.result-text .url {
  font-size: 14px;
  color: #ccc;
}

.result-text .description {
  font-size: 15px;
  color: #aaa;
}

.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
