.webMainLogo{
  margin-left: 23px;
}

.sidebar {
  
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 50vh;

  font-size: 13px;
  overflow-y: auto;

  /* Default state – only 25px visible */
  clip-path: inset(0px calc(300px - 28px) 0px 0px);

   
  transition: clip-path 0.3s ease, background-color 0.7s ease;
  
  
}


/* when sidebar is opened by click */
.sidebar.open {
  clip-path: inset(0 0 0 0);
  background-color: rgba(255, 255, 255, 0.95);
}

  
  .sidebar ul {
    list-style: none;
    
    padding: 0;
  }
  
 
  
  .sidebar ul li a {
    text-decoration: none;
   
    padding: 5px;
    display: block;
    transition: background 0.3s;
  }
  
  .sidebar ul li a:hover
  {
    
    background: #555;
    color: white;
  }

    .sidebar ul li a.active {
    
    background: #393939;
    color: white;
       
    transition: all 0.2s ease;
      
  }

  .sidebar:hover{
      background-color: rgba(255, 255, 255, 0.95);
      
   
  }



  .navBarHeading{
    color: black;
    font-weight: bold;
  
    
  }

  .navBarTopic{
    color:#555;
  }





  .hover-zone {
    position: fixed;
    top: 0;
    right: 0;
    width: 40px; /* Small trigger area */
    height: 100vh;
    

  }

  html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  html, body {
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none; 
}
