.search-form {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: flex-start; /* optional: align to left */
  gap: 10px; /* space between input and button */
  max-width: 100%;
}

.search-form input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-form button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #0077ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-form button:hover {
  background-color: #005fcc;
}
