/* 사이드바 스타일 */
.sidebar-container {
    position: fixed;
    top: 0;
    left: -960px; /* 기본적으로 화면 밖에 숨김 */
    z-index: 1000;
    transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1); /* 부드럽게 시작해서 빠르게 */
}

/* 사이드바가 열렸을 때 */
body.sidebar-open .sidebar-container {
    left: 0;
}

/* 토글 버튼 (탭 이미지) */
.sidebar-toggle {
    position: absolute;
    top: 294px; /* 344px - 50px */
    left: 960px; /* 콘텐츠의 오른쪽 끝에 위치 */
    z-index: 1001;
    width: 60px;
    height: 232px;
}

.sidebar-toggle img {
    cursor: pointer;
    width: 60px;
    height: 232px;
    object-fit: contain;
}

/* 사이드바 콘텐츠 */
.sidebar-content {
    position: absolute; /* fixed에서 absolute로 변경 */
    top: 140px; /* 190px - 50px */
    left: 0; /* 콘테이너 내부에서 0 */
    width: 960px;
    height: 600px;
    background-color: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 사이드바가 열렸을 때 */
body.sidebar-open .sidebar-content {
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15); /* 그림자 강화 */
}

/* 사이드바 내부 스타일 */
.sidebar-content {
    padding: 0;
}

/* 사이드바 상단 헤더 영역 */
.sidebar-header {
    width: 960px;
    height: 80px;
    background-color: #00a0df;
}
