*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}
.app-container{
    display: flex;
}
.dashboard{
  /* display: none; */
    width: 250px;
    padding: 20px;
     background-color: #fff;
      border-right: 1px solid #ddd;
}
.dashboard h2{
  margin: 10px;
 
}
.dashboard h3{
  margin: 10px;
 text-transform: uppercase;
}
.dashboard button{
  margin: 8px;
 padding: 15px;
 font-size: 12px;
 background-color: rgb(183, 241, 183);
}
.dashboard i{
  font-size: 15px;
}
 .filter-group {
      margin-bottom: 20px;
    }
    .filter-btn {
      display: inline-block;
      margin: 4px 4px 0 0;
      padding: 6px 12px;
      background-color: #726f6f;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
     .main-content {
      flex: 1;
      padding: 20px;
    }
    header {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }
    #searchInput {
      flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    #searchBtn {
      padding: 10px 16px;
      background-color: #3e4245;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
     .recipes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .recipe-card {
      background-color: rgb(252, 238, 238);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }
    .recipe-card:hover {
      transform: translateY(-5px);
    }
    .recipe-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .card-content {
      padding: 15px;
    }
     .card-content h3 {
      margin: 0 0 10px;
    }
    .fav-btn, .view-btn, #backBtn {
      padding: 6px 10px;
      margin-top: 10px;
      margin-right: 5px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .fav-btn {
      background-color: #f8e8e8;
    }
    .view-btn {
      background-color: #abd2f6;
    }
    .pagination {
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .single-recipe {
      max-width: 700px;
      margin: 0 auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .single-recipe img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 10px;
    }
    .single-recipe ul, .single-recipe ol {
      padding-left: 1.8rem;
      margin: 20px;
      margin-top:10px ;
      line-height: 1.5;
    }
    .single-recipe h3{
      padding: 10px;
      text-transform: uppercase;
    }
    .single-recipe p{
      margin: 10px;
   
    }
    .single-recipe button{
      color: #239cf8;
      background-color: black;
    }
    .single-recipe h2{
      margin: 15px;
    }
        @media screen and (max-width:  468px){
          .dashboard {
          display: none;
           
            }
          
         
        }