body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #a2b0a1;
  }

  #app-container {
    border-radius: 20px;
    border: 2px solid #857948;
    gap: 20px;
    padding: 20px;

    background-color: #fff1c6;
    background-image: url("bg-1.png");    
    background-position: left top;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;    
  }
  
  .header img,
  .footer img {
    width: 100%;
    height: auto;
  }
  .menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* padding: 20px; */
    max-width: 320px;
    margin: 0 auto;
  }
  
  .menu-card {
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    border-radius: 20px;
    /* box-shadow: 0 10px 20px rgba(92, 68, 55, 0.15); */
    /* width: calc(30% - 50px); */
    max-width: 300px;
    text-align: left;
    overflow: hidden;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    border: 2px solid #5c4237;
    position: relative;
  }
  
  .menu-card.full-row {
    width: 100%;
  }
  
  .menu-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); */
  }
  
  .menu-header {
    background: linear-gradient(to right, #857948, #5c4237);
    color: #ffffff;
    padding: 15px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border-radius: 15px 15px 0 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
  }
  
  .menu-header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: #ffd700;
    border-radius: 50px;
  }
  
  .menu-items {
    padding: 20px 0px 5px 20px;
  }
  
  .menu-items ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .menu-items li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
  }
  
  .menu-items li img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    /* filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.3)); */
  }
  
  .menu-card li img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    /* filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.3)); */
  }
  
  .health-benefits {
    background: #f5f5dc;
    border-top: 1px solid #ffe599;
    padding: 0px 20px 5px 20px;
    font-size: 16px;
    color: #555;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
    line-height: 1.2;
  }
  
  .health-benefits span {
    font-weight: 600;
    color: #d48900;
  }
  
  @media (max-width: 768px) {
    .menu-card {
      max-width: 300px;
      padding: 15px;
    }
  }
  
  #download-btn, .btn {
    margin: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  #download-btn:hover, .btn {
    background-color: #0056b3;
  }
  
  
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  border-radius: 10px;
  text-align: center;
}

textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  resize: none;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between cards */
  background-color: #f8f9fa; /* Light background for contrast */
  border: 10px solid #007BFF; /* Bold border */
  border-radius: 15px; /* Rounded corners for the border */
  padding: 20px; /* Space inside the border */
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  */
  max-width: 1200px; /* Constrain the width */
  margin: 0 auto; /* Center on the page */
}

.nutrition-facts {
  background: #f5f5dc;
  border-radius: 15px;
  padding: 10px;
  margin-top: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
  text-align: center;
}

.nutrition-facts h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #54473f;
  text-transform: uppercase;
  font-weight: bold;
}

.nutrition-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.nutrition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nutrition-circle {
  background: #dce4c9;
  color: #54473f;
  border: 2px solid #b6a28e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.nutrition-label {
  font-size: 14px;
  color: #54473f;
  font-weight: 500;
  text-transform: uppercase;
}
