/* CSS for Collapsing/Expanding, Hover Effect, and Sticky Sidebar */

/* Sticky Sidebar */
.left-navigation-panel {
    position: fixed; 
    top: 0;
    bottom: 0;
}

/* Collapsed Sidebar State */
.left-navigation-panel.collapsed {
    width: 50px; /* Width when collapsed */
}

/* Toggle Button Styles */
.sidebar-toggle {
    background-color: #34495e;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 24px;
    margin: 10px;
    transition: 0.3s;
}

.sidebar-toggle:hover {
    background-color: #2c3e50;
}

/* Tooltip for Hover Effect on Collapsed State */
.sidebar-tooltip {
    position: absolute;
    background-color: #34495e;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1001; /* Ensure it appears above the sidebar */
    display: none;
    white-space: nowrap; /* Prevent wrapping of text */
}

/* End of CSS for these features */