body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

#buscador-wrapper {
  display: block;
  width: 100%;
  margin-top: 0px;
  padding: 20px;
}

.search-form {
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.search-input {
  padding: 12px 16px 40px 40px;  /* margen izquierdo aumentado */
  font-size: 17px;
  border: 1px solid grey;
  border-right: none;
  border-radius: 8px 0 0 8px;
  flex-grow: 1;
  width: 100%;
}

.search-button {
  padding: 12px 24px;
  background: #5fab7a;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
}

.search-button:hover {
  background: #4e9b6b;
}

.result-item {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 17px 24px;  /* margen horizontal aumentado */
  margin: 25px auto;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  max-width: 900px;
}

.result-item:hover {
  transform: scale(1.01);
}

.result-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 8px;
}

.result-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
}

.result-images img {
  width: 140px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-right: 12px;
  margin-bottom: 12px;
}

.result-images img:hover {
  transform: scale(1.05);
}

#resultados {
  margin-top: 100px;
}

#sin-resultados {
  text-align: center;
  font-size: 17px;
  color: #777;
  margin-top: 40px;
}
