

.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    
font-size: 13px;
   
    overflow-y: auto;
    transform: translateX(90%); /* Start hidden */
     
    transition: background 0.7s;



  }
  
  .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,
  .sidebar ul li a.active {
    background: #555;
    color: white;
  }

  .sidebar:hover{
    background: rgba(255, 255, 255, 0.936);
   
  }



  .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; 
}
