* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff3e6; /* 🍑 soft peach background */
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  max-width: 900px;
  margin: 50px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #ff6f61; /* coral */
  margin-bottom: 20px;
}

input {
  padding: 12px 20px;
  width: 60%;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #ff6f61;
  background-color: #fffaf5;
  outline: none;
  transition: 0.3s;
}

input:focus {
  border-color: #5d3fd3; /* purple */
}

button {
  padding: 12px 25px;
  background: #5d3fd3; /* purple */
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ff6f61; /* coral on hover */
}

#recipeContainer {
  margin-top: 30px;
  text-align: left;
}

img {
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h2 {
  color: #5d3fd3;
  margin-bottom: 10px;
}

h3 {
  color: #ff6f61;
  margin-top: 20px;
}

ul {
  padding-left: 20px;
  line-height: 1.6;
}

li::marker {
  color: #5d3fd3;
}

.instructions {
  margin-top: 15px;
  line-height: 1.8;
  font-size: 16px;
}
