body {
  font-family: "Roboto Serif", serif;
  margin: 0;
  padding: 40px 20px;
  background: linear-gradient(135deg, #7389e9bd 0%, #764ba297 100%);
  min-height: 100vh;
}

.search-container {
  max-width: 600px;
  margin: 0 auto 30px auto;
  background-color: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

h1 {
  margin: 0 0 30px 0;
  color: #333;
  font-size: 36px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

#recipe-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

#ingredients-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px; /* Rounded like Matt's */
  font-size: 16px;
  font-family: "Roboto Serif", serif;
}

#ingredients-input:focus {
  outline: none;
  border-color: #667eea;
}

button {
  background-color: #667eea;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Roboto Serif", serif;
  font-weight: 600;
}

button:hover {
  background-color: #5568d3;
}

#recipe-display {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-height: 150px;
  line-height: 1.8;
  display: none;
  max-height: 700px;
  overflow-y: auto;
  border-left: 5px solid #667eea;
}

#recipe-display.show {
  display: block;
}

#recipe-display h2 {
  color: #667eea;
  margin-top: 0 0 25px 0;
  font-size: 32px;
}

#recipe-display h3 {
  color: #764ba2;
  margin: 25px 0 15px 0;
  font-size: 20px;
}

#recipe-display p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

#recipe-display ul {
  margin: 15px 0;
  padding-left: 25px;
}

#recipe-display li {
  margin: 8px 0;
  font-size: 16px;
}

#recipe-display strong {
  color: #667eea;
}

footer {
  max-width: 600px;
  margin: 40px auto 0 auto;
  padding: 20px;
  text-align: center;
}

footer p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

footer strong {
  color: white;
}

footer a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

footer a:hover {
  text-decoration: none;
}
