/* 사이드바 스타일 수정 */
.sidebar {
    height: calc(100vh - 56px);
    position: fixed;
    top: 56px;
    left: 0;
    padding: 0;
    background-color: #f8f9fa;
    width: 250px;
    overflow-y: auto;
    z-index: 2;
}

/* 로고 스타일 수정 */
.sidebar-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 255px;
    height: 50px;
    text-align: center;
    padding: 10px 0;
    z-index: 1030; /* 네비바와 같은 레벨의 z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.sidebar-logo img {
    max-width: 90px;
    height: auto;
}

.sidebar-logo .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* 사이드바 내용 영역 조정 */
.sidebar .accordion {
    margin-top: 20px;
}