/* i added it in ini.css for subPages */
*{
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #9b59b6, #27ae60);
  }

  header {
    background: linear-gradient(90deg, #9b59b6, #27ae60);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    
  }

  h1 {
    margin: 0;
    font-size: 2.2rem;
  }


  section {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .mainSection img {
    display: block;
    min-width: 200px;
    max-width: 600px;
    margin: 1rem auto;
  }

  h2 {
    color: #27ae60;
    padding-left: 0.5rem;
    margin-top: 2rem;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
  }

  th, td {
    border: 1px solid #ddd;
    padding: 0.7rem 1rem;
    /* text-align: left; */
  }

  th {
    background-color: #f0f0f0;
  }

  ol {
    margin-left: 1.5rem;
  }

  .recipe-box {
    background-color: #faf8f5;
    border: 2px dashed #9b59b6;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
  }

  .recipe-box h3 {
    margin-top: 0;
    color: #9b59b6;
  }

  footer {
        text-align: center;
        font-size: 0.8rem;
        padding: 1rem;
        background: #9b59b6;
        color: white;
        margin: 0;
        }

  .divHeader{
    display: flex;
    flex-flow: row;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  /* logo for header description "fruit, veg, flower... etc in subPages Name" */
  .divHeaderLogo{
    width: 100px;
    height: 100px;
  }
  .mainSectionPhoto{
    width: 300px;
    background-color: rgb(174, 161, 161);
    border-radius: 17px;
  }
  /* photo in main section */
  .divHeaderLogo, .mainSectionPhoto{
    pointer-events: none;
  }
  
 /* Navigation, .navPages. class came from languages */
.dad{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.dad .navPagesCh1 li{
    display: inline;
    
}
.dad .navPagesCh1 li a{
    text-decoration: none;
    color: #FFF;
    padding: 7px;
    font-size: 15px;
}
.dad .navPagesCh1 li a:hover{
    /* DodgerBlue */
    color: #1E90FF;
}
.navPagesCh1 .navSelectBox{
    margin: 0 auto;
    text-align: center;

}
.navPagesCh2 .navImg{
    width: 50px;
    height: 50px;
}


@media only screen and (max-width: 372px) {
/* Navigation, .navPages. class came from languages */
.dad{
    height: 100px;
}
}
  

  