.sidebar {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 50px;   
    margin-bottom: 100px;        
}
.sidebar-item {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none; 
    color: #000;

    /* Body/Regular */
    font-family: "Noto Sans CJK TC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */ 
}
.sidebar-item:last-child {
    border-bottom: none;
}
.sidebar-item:hover {
    background-color: #e9ecef;
    cursor: pointer;
}
.sidebar-item i {
    color: #6c757d;
}

.sidebar-class {
    margin: 0 !important;
}

.sidebar-mobile {
    background: #f8f9fa;
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 75px;
    left: -768px;
    transition: left 0.3s ease-in-out;
    padding: 20px;
    z-index: 1000;   
}
.sidebar-mobile.show {
    left: 0;
}
.main-content {
    margin-left: 0;
    transition: margin-left 0.3s ease-in-out;
}
.main-content.shifted {
    margin-left: 0;
}
@media (min-width: 768px) {
    .sidebar-mobile {
        left: 0;
    }
    /* .main-content {
        margin-left: 250px;
    } */
}

.sidebar-item-mobile {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none; 
    color: #000;

    /* Body/Regular */
    font-family: "Noto Sans CJK TC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */ 
}
.sidebar-item-mobile:last-child {
    border-bottom: none;
}
.sidebar-item-mobile:hover {
    background-color: #e9ecef;
    cursor: pointer;
}
.sidebar-item-mobile i {
    color: #6c757d;
}

.sidebar {
    display: block;
}

.sidebar-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .sidebar-mobile {
        display: block;
    }
}

.sidebar-btn-open {
    margin-top: 12px;
    border: none;
    background: #E4E4E4;
    font-size: 25px;
    display: none;
}

.sidebar-btn-close {
    position: absolute;
    right: 15px;
    top: 32px;
    background: black;
    border: none;
    color: white;
    font-size: 25px;
    display: none;
}

.sidebar-padding {
    padding-bottom: 150px;
}

@media (max-width: 768px) {
    .sidebar-padding {
        padding-bottom: 0px;
    }
    .sidebar-btn-open {
       display: block;
    }
    
    .sidebar-btn-close {
       display: block;
    }
}








