/**
 * demo2 크롬 위에 공통 인증·메뉴팝업·사이트메시지가 보이도록 z-index 보정
 */
.auth-modal-root,
.menu-popup-root,
.site-message-root,
.memo-layer-root,
.mb-div-popup-root {
  z-index: 12000 !important;
}

body.page-demo2-home .modal-root,
body.page-demo2-home #modal-root {
  display: none !important;
}

/* 게스트/회원 토글은 PHP body 클래스(is-guest / is-in) 기준 */
body.is-guest .sess {
  display: none !important;
}

body.is-in .auth.is-login,
body.is-in .auth.is-join,
body.is-member .auth.is-login,
body.is-member .auth.is-join {
  display: none !important;
}

body.is-guest .auth.is-login,
body.is-guest .auth.is-join {
  display: inline-flex;
}
