body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.recipe-card {
  width: 90%;
  max-width: 600px;
  margin: 40px auto;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* Very faint shadow */
  overflow: hidden;
  position: relative;
}

.recipe-image {
  width: 200px;
  height: 200px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 20px; /* added margin to move the circle down a bit */
}

.recipe-content {
  padding: 25px; /* Increased padding - this is the key fix */
}

h1, h2 {
  /* color: #1e88e5; */
  font-weight: 600;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.3em;
}


.ingredients {
  margin-bottom: 25px;
}

.ingredients ul {
  list-style-type: disc; /* Use disc for filled circles */
  padding-left: 20px; /* Indent the list */
}

.ingredients li {
  margin-bottom: 8px; /* Adjust spacing as needed */
}

.instructions p {
  margin-bottom: 20px;
}

.kcal-display {
  top: 15px;
  right: 15px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 500;
  color: #555;
  background-color: rgba(255,255,255,0.7);
}

footer {
  text-align: center;
  padding: 15px 0;
  background-color: #e0e0e0;
  font-size: 0.9em;
  color: #757575;
  margin-top: 40px;
}

footer a {
  color: #757575;
  text-decoration: none;
}