#resResourceList_btnResourceSetting {
    background-image: url("../../img/svg/tree-icon/ic_tree_setting-fill.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: 0px center;
    /*margin-top : 10px;*/
}


#resResourceList_adminConfig {
    background-image: url("../../img/svg/tree-icon/ic_tree_wrench-fill.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: 0px center;
}

#resResourceList_main{
    height: 100%;
}

/* 폴더접기,열기 관련 -- S */
.btn_close_folder {
    mask-image: url("../../img/svg/tree-icon/ic_tree_menu-close.svg");
    mask-size: 16px 16px;
    mask-repeat: no-repeat;
    mask-position: 0 center;
    background: var(--color-icon-primary);
    width: 16px;
    height: 16px;
}

.btn_close_folder.closed {
    transform: rotate(180deg);
}

.tree-label-rootBtn {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 3px 5px 3px 5px;
    background-color: var(--color-bg-default);
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    line-height: 150%;
    color: var(--color-text);
}

.snb .tree_wrap .btn_close_folder, .snb .tree_wrap .btn_open_folder {
    margin : 0;
    vertical-align : middle;
}
/* 폴더접기,열기 관련 -- E */

/* tree 제외 좌측 디자인 설정 -- S */
.snb {
    padding: 0 1px;
    display: flex;

    flex-direction: column;
    height: 100%;
}

.snb h2 {
    all: unset;
    padding: 12px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: -0.2px;
    text-align: center;
    color: var(--color-text-bold);
}

.snb.resource .btn_wrap {
    margin: 0 12px 12px;
}



/* 예약하기 버튼 */
.btn_type_01 {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    /*width: 96%;*/
    width: 100%;
    height: 40px;
    padding: 0 20px;
    gap: 8px;

    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    /*font-weight: 500;*/
    font-style: normal;
    font-size: 15px;
    /*line-height: 150%;      !* 21px *!*/
    line-height: 1.5;      /* 21px */
    letter-spacing: -0.2px;

    border-radius: 8px;
    border: none;
    background-color: var(--color-button-bg-primary-fill);
    color: var(--color-text-inverse);

    cursor: pointer;
    opacity: 1;
    transition: background-color 0.2s ease;

    position: relative;
    background-image: none;
    background-position: initial;
}

/* 아이콘 삽입 */
.btn_type_01::before {
    content: "";
    /*display: inline-block;*/
    position: absolute;
    left: 16px;
    width: 16px;
    height: 16px;
    mask-image: url(../../img/svg/ic_cmm_plus.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    background-color: var(--color-icon-inverse);
    filter: brightness(0) invert(1); /* 아이콘을 흰색처럼 보이게 */
}
/* tree 제외 좌측 디자인 설정 -- E */

/* tree 디자인 -- S */
#resResourceList_main .snb .tree_wrap {
    /*all: unset;*/
    display: block;
    height: auto;
}

.snb .tree_wrap {
    /* position: absolute; */
    position : relative; !important;
    overflow: auto;

    border-top: 1px solid var(--color-divider-light);
}

.snb .tree_wrap .tree {
    position : relative; !important;
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    /*padding: 5px 0 5px 0;*/
    padding-left: 12px;
    padding-right: 12px;
}

.snb.resource .tree_wrap {
    position : relative !important;
    top: auto !important;
    bottom: auto !important;
    /*left: 0;*/
    padding: 0px 0px;
    flex: 1;
}

.tree-node:not(.folder-node) > .tree-node-content {
    margin-left: -10px;  /* 예: 왼쪽으로 8px 당기기 */
}

/* tree 디자인 -- E */

/* 하단 메뉴(관리자설정 메뉴 영역) -- S */
#resResourceList_main .snb_setting {
    all: unset;
    display: block;
    height: auto;
}

#resResourceList_resourceSnb > .snb_setting {
    padding: 12px;
    border-top: 1px solid var(--color-divider-light);
    background-color: var(--color-bg-default);
    z-index: 10;
}

#resResourceList_resourceSnb .snb_setting li {
    margin-bottom: 2px;
}
/* 하단 메뉴(관리자설정 메뉴 영역) -- E */


/* 초대받은 예약 디자인 -- S */
.invited_n_search {
    all : unset;
}

.snb.resource .invited_n_search {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

.snb.resource.active .invited_n_search {
    display: block;
    height: auto;
    max-height: 211px;
    overflow: auto;
}

.invited_n_search .schedule_type {
    position: static !important;  /* absolute 덮어쓰기 */
    top: auto;
    left: auto;
    margin-right: 4px;            /* 아이콘과 텍스트 간격 */
    display: inline-block;        /* inline 흐름 유지 */
    vertical-align: middle;
}

.res-left__top-wrapper {
    overflow: hidden;
}

.res-left__invite-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 8px 9px 16px;
    font-family: Pretendard, sans-serif;
    font-weight: 500;
    user-select: auto;
    cursor: pointer;
}

.res-left__invite-title-left {
    color: var(--color-text);
    font-size: 0.9375rem;
}

.res-left__invite-title-right {
    color: var(--color-text-subtle);
    font-size: 0.875rem;
}

.res-left__invite-count-num {
    font-weight: 600;
    color: var(--color-text-primary);
}

.res-left__arrow-down--carrot {
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(-90deg);
    mask-image: url("../../img/svg/ic_cmm_fill_arrow_down.svg");
    mask-repeat: no-repeat;
    mask-size: 6px 5px;
    mask-position: center center;
    background-color: var(--color-icon);
    margin-right: 8px;
}

.snb.resource.active .res-left__arrow-down--carrot{
    transform: rotate(0deg);
}

.res-left__invite-list {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*overflow: hidden;*/
    /*max-height: 0px;*/
    /*margin-top: 8px;*/
    padding: 0px 8px 0px 16px;
    /*transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
}

.res-left__invite-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    /*padding-bottom: 8px;*/
    font-family: Pretendard, sans-serif;
    user-select: auto;
    /*cursor: pointer;*/
}

.res-left__invite-item + .res-left__invite-item {
    padding-top: 8px;
    border-top: 1px solid var(--color-divider-lighter);
}

.res-left__item-event-name {
    display: inline-block;
    /*width: 100%;*/
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
    /*font-size: 0.875rem;*/
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.2px;
    color: var(--color-text-bold);

    max-width: 180px;
    white-space: nowrap;
}

.res-left__item-emp {
    /*font-size: 0.813rem;*/
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text);
}

.res-left__item-date {
    /*font-size: 0.813rem;*/
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text);
}

.res-left__item-action-button {
    margin-left: auto;
}


.res-left__invite-item-wrapper {
    display: flex;
    flex-direction: column;
}

.res-left__invite-item-wrapper + .res-left__invite-item-wrapper {
    border-color: var(--color-divider-lighter);
}

.invited_n_search li {
    padding: 8px 6px 8px 6px;
}
/* 초대받은 예약 디자인 -- E */
