#sidebar {
    width: 90%;
    max-width: 250px;
    font-family: inherit;
    font-size: 15px;
    background: #f9f9fb;
    border-radius: 12px;
    padding: 0px 12px 0px 12px;
    box-shadow: 0 2px 8px rgba(60, 60, 60, 0.06);
    border: 1px solid #e6e6e6 !important;
}

.sidebar-list,
.sidebar-sublist {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.sidebar-item {
    margin: 4px 0;
    border-radius: 6px;
    transition: background 0.2s;
}

.sidebar-item>a,
.sidebar-title {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.sidebar-item>a:hover,
.sidebar-title:hover {
    background: #e3e8f0;
    color: #00A3A1;
}

.selected-link,
.selected-link:hover {
    background: #e3e8f0;
    color: #00A3A1;
}

.sidebar-collapsible>.sidebar-toggle {
    cursor: pointer;
    margin-right: 4px;
    font-size: 16px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(.4, 2, .6, 1);
    user-select: none;
}

.sidebar-collapsible>.sidebar-toggle .material-symbols-rounded {
    font-size: 18px;
    transition: transform 0.25s cubic-bezier(.4, 2, .6, 1);
    vertical-align: middle;
    color: #5a5a5a;
}

.sidebar-collapsible.open>.sidebar-toggle .material-symbols-rounded {
    transform: rotate(90deg);
    color: #00A3A1;
}

.sidebar-sublist {
    display: none;
    margin-left: 8px;
    padding-left: 4px;
    margin-top: 2px;
}

.sidebar-collapsible.open>.sidebar-sublist {
    display: block;
}

.sidebar-title {
    font-weight: 500;
    color: #222;
    font-size: 15px;
    margin-left: 2px;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #00A3A1;
    font-size: 15px;
    margin-left: 24px;
}

a:hover {
    text-decoration: underline;
    color: #00A3A1;
}

.sidebar-hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background-color: #fff;
    position: relative;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 2px 12px #0002;
    border-radius: 4px;
    transition: all 0.3s ease;
    max-width: 50px;
}

.sidebar-hamburger-menu:hover {
    background-color: #f7f8f0;    
}

.sidebar-hamburger-menu span {
    width: 100%;
    height: 2px;
    width: 30px;
    background-color: #444;
    border-radius: 200px;    
}

#sidebar ul, #sidebar li {
    list-style: none;                    
}

#sidebar {
    display: block;
    max-height: 100dvh;
    overflow-y: auto;
    position: relative;
    z-index: 1000;  
}

.sidebar-title, .sidebar-item a {
    font-size: 12px !important;
}

@media screen and (max-width: 900px) {
    #sidebar {
        width: 100%;
        max-height: 200px;
        display: none;
    }

    .section-right {
        width: 100% !important;
    }

    .sidebar-hamburger-menu {
        display: flex;
    }    
}