.menutree {
    position:sticky;
    top:5px;
    width:15%;
    margin:15px 15px 15px 0px;
    /* Thêm thanh cuộn để tràn nội dung */
    overflow-y:auto;
    overflow-x:auto;
    background: var(--background);
}

/** Phần tử cha <ul> và các phần tử con <li> **/
.index-menu-item {
    margin: 10px 0px;
}

.index-menu-list {
    margin: 5px 0px 5px 10px;
}

/** Tất cả thẻ <a> **/
.index-menu-link{
    color: var(--main);
    transition:all 0.2s ease-in-out 0s;
    padding:5px 0px;
}

.index-menu-link:hover {
    color: var(--theme);
    text-shadow: var(--text-shadow);
    font-weight:500;
    background-color:#efefef;
}

/* Định vị nhảy điểm neo */
.menu-target-fix {
    display: block;
    position: relative;
    /* Bù đắp */
    top:-100px;
}

/* Ẩn dấu gạch ngang trên các thiết bị có chiều rộng dưới 1000px để tiêu đề mục lục hiển thị đúng */
@media screen and (max-width:1000px) {
    .joe_aside__item-title > .line {
        display:none;
    }
}

/* Ẩn thanh bên mục lục trên các thiết bị có chiều rộng dưới 800px */
@media screen and (max-width:800px) {
    .menutree{
        display:none;
    }
}