.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 1.2em;
  cursor: pointer;
}
#results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.recipe-card {
  border: 2px solid #dc7d3c;
  border-radius: 10px;
  padding: 10px;
  width: 150px;
  background-color: #ffdf75;
  text-align: center;
  transition: transform 0.2s;
}

.recipe-card:hover {
  transform: scale(1.05);
}
