body {
    font-family: cursive;
    background-color: #cbc1c1;
    color: #333;
    padding: 40px 20px;
  }
  
  .recipe-container {
    max-width: 750px;
    margin: auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: -1px 0px 29px 9px rgba(118,118,118,0.51);
  }
  
  .main-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .description {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .time-box {
    background-color: #fff5fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .time-box h3 {
    color: #9a2063;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .time-box ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .time-box li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  h2 {
    color: #854632;
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .ingredients,
  .instructions {
    padding-left: 20px;
    margin-bottom: 30px;
  }
  
  .ingredients li {
    margin-bottom: 6px;
    font-size: 15px;
  }
  
  .instructions li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
  }
  

  .instructions strong {
    color: #854632;
    font-size: larger;
}
  table.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 15px;
  }
  
  .nutrition-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .time-box strong {
    color: #9a2063;
    font-size: larger;
}

.nutrition-table td >strong {
    font-size: larger;
} 