body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff7f0;
    text-align: center;
    padding: 40px;
  }
  
  .container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  input {
    padding: 10px;
    width: 60%;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 10px;
  }
  
  button {
    padding: 6px 12px;
    margin-top: 8px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  
  button:hover {
    background-color:#45a049;
  }
  
  #result {
    margin-top: 20px;
  }
  
  img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-top: 20px;
  }
/* Recipe Result Cards */
#results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

#results div {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background: #fafafa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

#results div:hover {
  transform: scale(1.02);
}

#results img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

#results h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

#results p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}

button {
  background-color: #ff7043;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  margin-top: 5px;
}

button:hover {
  background-color: #ff5722;
}

  