
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
html {
    height: 100vh;
    }
body {
    height: 100vh;    
    font-family: 'Roboto', sans-serif, 'Times New Roman', Times, serif ;
}

/* header */ 
.material-icons {
    color: rgb(96, 96, 96);
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 15px;
    margin-top: 0;
  }
  .headerp1 {
    display: flex;
    text-align: center;
  }
  .headerp2 {
    display: flex;
    text-align: center;
  }

  
  .headerp3 a {
    float: right;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }


  
  .headerp3 .icon {
    display: none;
  }
  
  @media screen and (max-width: 600px) {
    .headerp3 a:not(:first-child) {display: none;}
    .headerp3 a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .headerp3.responsive {position: relative;}
    .headerp3.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .headerp3.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }


  .material-icons:hover,
  a:hover .material-icons {
      border-radius: 50%;
      background-color: #c6c8c9; /* Change this to your desired background color */
      color: #fff; /* Change this to your desired text color */
      padding: 5px; /* Adjust padding as needed */
      display: inline-block;
      width: 36px; /* Adjust the width to match the icon size */
      height: 36px; /* Adjust the height to match the icon size */
      text-align: center;
      line-height: 24px; /* Adjust line-height to center the icon vertically */
  }
   

/*main body*/
.mainBody {
    
    display: flex;
    overflow: scroll;
}


/*sidebar*/
.mainBody1 {
    height: 100vh;
    width: 230px;
    background-color: white;
}


.sidebar {
    overflow: hidden;
}

.sidebar a {
    float: left;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.sidebar a:hover {
    background-color: #ddd;
    color: black;
}

/* main content area */
.mainBody2 {
    flex: 1; /* Takes up the remaining space */
    /* You can add a specific width here if needed */
    min-height: 0; 
    overflow-y: scroll;
}

  

/* footer */
footer {
    background-color: #088b9a;
    color: white;
    text-align: center;
    padding: 5px;
    margin-top: auto;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hide {
    display: none !important;
  }

  .material-icons,
  a .material-icons {
      cursor: pointer;
  }