
.container {
display: flex;
justify-content: space-between; /* or use space-around, center, etc. as per layout preference */
width: 100%; /* makes it responsive */
}
#left-sidebar {
min-width: 250px; /* Prevents sidebar from becoming too narrow */
overflow-y: auto;
width: 20%; /* or adjust as needed */
padding: 0 0 0 5px;
height: 1300px;
text-align: left; /* center-aligns text within each box */
overflow-x: scroll; /* Enables horizontal scrolling for overflow */
box-shadow: 3px 1px 10px rgba(0, 0, 0, 0.2); 
display:block;
z-index: 998;
line-height: 26px;
}
#main-wrapper {
opacity: 0; /* Hide content initially */
transition: opacity 0.5s ease-in-out;
min-height: 100vh;
overflow-wrap: break-word; /* Ensures long words break to fit */
word-wrap: break-word; /* Adds extra support for breaking words */
width: 57%; /* or adjust as needed */
padding: 25px 25px 25px 25px;
margin: 8px;
height: 1300px;
box-shadow: 1px 0 1px rgba(0, 0, 0, 0.2); 
overflow-x: hidden; /* Enables horizontal scrolling for overflow */
overflow-y: scroll;/* Enables vertical scrolling for overflow */
display: block;
max-width: 900px; /* Ensures a readable line length */
margin: 0 auto; /* Centers content */
box-sizing: border-box;
}
#sidebar-wrapper {
width: 20%; /* or adjust as needed */
padding: 20px;
text-align: center; /* center-aligns text within each box */
height: 1300px;
overflow-x: hidden;  /* Prevents horizontal scrolling */  
overflow-y: scroll;/* Enables vertical scrolling for overflow */
box-shadow: 1px 0 1px rgba(0, 0, 0, 0.2); 
}

@media only screen and (max-width:768px){
#sidebar-wrapper{
    display:none;
}

#main-wrapper{
    width:100%;
    height:1300px;
    padding: 25px 5px 25px 5px;
}
#left-sidebar{
    display: none; 
    width: 200%;
    position:relative;
}

#left-sidebar.open {
    display: block !important; /* Display the sidebar when the icon is clicked */
}
}
