.sidebar {
    width: 60px;
    background-color: #f8f9fa;
    position: fixed;
    top: 20%;
    left: 0;
    padding: 1rem 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
}

.sidebar.collapsed {
    width: 0;
    padding: 1rem 0;
    overflow: hidden;
}

.sidebar button {
    margin-left: 0.60rem;
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-sidebar {
    position: fixed;
    top: 20%;
    left: 60px; /* Matches the width of the expanded sidebar */
    background-color: #007bff;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: left 0.3s ease; /* Smooth transition when sidebar collapses/expands */
}

.toggle-sidebar.collapsed {
    left: 0; /* Move toggle button to align with collapsed sidebar */
}

#content {
    /*margin-left: 80px;  Adjust space for expanded sidebar */
    transition: margin-left 0.3s ease;
}

#content.collapsed {
    /*margin-left: 20px; Adjust space for collapsed sidebar */
}

.high-contrast {
    background: black!important;
    color: yellow!important;
}

