/* 사이드바 토글 - 원본 사이트 방식 */
@media (max-width: 991px) {
    #sidebar-wrapper {
        position: fixed !important;
        left: -250px !important;
        top: 0 !important;
        width: 250px !important;
        height: 100% !important;
        z-index: 1000 !important;
        background: #f8f8f8 !important;
        overflow-y: auto !important;
        transition: left 0.5s ease !important;
    }
    
    #wrapper.toggled #sidebar-wrapper {
        left: 0 !important;
    }
}