.sidebar {
  position: fixed; /* 이미 fixed 라면 그대로 */
  left: -260px; /* .open 이면 0 으로 이동 */
  top: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000; /* ← 추가 또는 숫자 ↑ */
}

.sidebar.open {
  left: 0; /* 버튼 클릭 시 화면 안으로 */
}
