
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  

  html, body {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F28C28;
  }
  
  .container {
    height: 90%;
    width: 90%;
    background-color: wheat;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 1);
  }
  

  .top {
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
  
  .logo {
    font-size: 200%;
    font-weight: 600;
    padding: 20px;
  }
  
  .logoImg {
    width: 30vh;
  }
  
  ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding-right: 25px;
    font-size: larger;
  }
  
  .topMiddle {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    height: 70%;
  }
  
  .searchBar {
    width: 70%;
    height: 8vh;
    border-radius: 20px;
    padding: 10px;
    border: none;
    font-size: large;
  }
  
  .searchBtn {
    width: 10vw;
    height: 8vh;
    background-color: #ba2d0b;
    background-image: linear-gradient(319deg, #ba2d0b 0%, #fe7f2d 37%, #ffbf46 100%);
    font-size: larger;
    border-radius: 30px;
    border: none;
    cursor: pointer;
  }
  

  .bottom {
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  
  .bottomLeft {
    width: 30%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    border-radius: 20px;
    gap: 45px;
  }
  
  .imageDisplay {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    gap: 23px;
  }
  
  img {
    margin-left: 10px;
    height: 70px;
    width: 70px;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .title {
    width: 100%;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    gap: 10px;
  }
  

.bottomRight {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start; 
    padding: 40px;
    background-color: wheat;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto; 
}

.recipe h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ba2d0b;
}

.recipe p, .recipe ul {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.recipe img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

  
  .recipe-info {
    display: flex;
    gap: 20px;
    font-size: 18px;
    color: #ba2d0b;
    margin-bottom: 20px;
  }
  
  .recipe-info span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .recipe-ingredients {
    margin-bottom: 30px;
  }
  
  .recipe-ingredients h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ba2d0b;
  }
  .ingredients-list {
    list-style-type: none; 
    padding-left: 0;
    margin: 20px 0;
}

.ingredients-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px; 
}

.ingredients-list li i {
    color: #28a745; 
    margin-right: 10px; 
}

  
  .recipe-ingredients ul {
    list-style: none;
    padding: 0;
  }
  
  .recipe-ingredients ul li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #333;
  }
  
  .recipe-ingredients ul li::before {
    content: "✔";
    color: #ba2d0b;
    margin-right: 10px;
  }
  
  .recipe-directions h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ba2d0b;
  }
  
  .recipe-directions p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
  }
  
  #source-url {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f28c28;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  #source-url:hover {
    background-color: #ba2d0b;
  }

  .ingredients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.left-column p,
.right-column p {
  margin: 5px 0;
  font-size: 16px;
  color: #333;
}



#message {
  text-align: center;
  margin-top: 20px;
}

.clickSticker {
  width: 150px;
  margin-top: 20px;
}


.upperwala{
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    align-items: center;
     font-size:30px;
    }

.recipe ul {
  columns: 2;
  list-style: none;
}
  
  /* Responsiveness */
  @media (max-width: 600px) {
    .bottomRight {
      padding: 20px;
    }
  
    .recipe-info {
      font-size: 16px;
    }
  
    .recipe-ingredients h2,
    .recipe-directions h2 {
      font-size: 20px;
    }
  
    .recipe-ingredients ul li,
    .recipe-directions p {
      font-size: 16px;
    }
  }
  