.sidebar {
  width: 100%;
  max-width: 800px;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: -9999px;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: right 0.1s ease;
  padding: 20px 24px;
  z-index: 9999;
  overflow-x: hidden;
}

.sidebar.on {
  right: 0;
}

.menu-toggle {
  position: absolute;
  top: 12px;
  right: 20px;
}

.sidebar img {
  border-radius: 50%;
}

.sidebar-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 44px;
}

.sidebar-header .blue-box div {
  width: 20px;
  height: 20px;
}

.sidebar-header .blue-box span {
  display: inline-block;
  text-align: left;
  font-size: .75rem;
  font-weight: 200;
}

.sidebar-header img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.sidebar-header span:first-child {
  color: #fff;
  font-weight: 200;
  margin-bottom: 4px;
}

.sidebar-header h3 {
  margin-bottom: 4px;
}


/* 메뉴 섹션 스타일 */
.menu-section::before {
  content: '';
  display: block;
  width: calc(100% + 72px);
  height: 8px;
  background: #eee;
  margin: 20px 0 20px -36px;
}

.menu-section h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.menu-section h4 button {
  border: none;
  background: none;
}

.menu-section:not(.staff-list) ul {
  display: block;
}

.menu-section:not(.staff-list) ul.hide {
  display: none;
}

.menu-section:not(.staff-list) ul li {
  padding: 10px 0;
  font-size: .875rem;
}

.arrow {
  transition: transform 0.3s;
}

.arrow.open {
  transform: rotate(180deg);
}

.staff-list>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.staff-list ul {
  display: flex;
  gap: 12px;
  overflow-x: scroll !important;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.staff-list li {
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.staff-list li img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.staff-list li span {
  font-size: .75rem;
}

.staff-list .list-more {
  display: flex;
  align-items: center;
  font-size: .875rem;
}