nav.baloobetapp-sidebar {
width: 100%;
min-width: 250px;
max-width: 275px;
border-radius: 14px;
background: linear-gradient(180deg, #202d48, #202d48);
color: #f0f0f0;
font-weight: 800;
font-size: 1em;
padding: 20px 15px;
transition: all 0.5s ease-in-out;
border: 2px solid #ffffff14;
}

.baloobetapp-sidebar ul {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}

.baloobetapp-sidebar ul li {
display: block;
width: 100%;
box-sizing: border-box;  
color: #fff;
font-size: 1em;
padding: 10px 15px;
cursor: pointer;
transition: all 0.5s ease-in-out;
border-left: 3px solid #f2d62d;
word-wrap: break-word;
white-space: normal; 
margin-bottom: 15px;
}

.baloobetapp-sidebar ul li a {
display: block;           
width: 100%;
}

.baloobetapp-sidebar ul li:hover {
background-color: #f2d62d;
border-left: 3px solid #f2d62d;
color: #000;
}

.baloobetapp-sidebar {
transition: transform 0.5s ease, opacity 0.5s ease;
}

.baloobetapp-sidebar.hidden {
transform: translateX(-100%);
opacity: 0;                   
pointer-events: none;
}