/* 여기에 작업 또는 수정할 당신의 css style을 설정하세요. (customizations) */
/* ==========================================================================
   [최종 해결] 오작동하는 이윰빌더 테마 설정 바 완전 소멸 처리
   ========================================================================== */

/* 1. 클래스나 아이디에 'sidebar' 또는 'config'가 포함된 모든 레이어를 강제 소멸 */
div[id*="sidebar"] , 
div[class*="sidebar"] , 
div[id*="config"] , 
div[class*="config"] , 
.eyoom-sidebar , 
#sidebar-config {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    z-index: -99999 !important;
    pointer-events: none !important;
}

/* 2. 스크린샷 6.21.59.jpg 좌측 하단 흰색 잔상 박스 테두리 및 배경 무조건 투명화 */
body > div:last-child, 
body > main + div,
body *:contains("테마 환경 설정") {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    display: none !important;
}