.action-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
}

    .action-menu-item.disabled {
        pointer-events: none;
        opacity: 0.5;
        cursor: default;
    }

    .action-menu-item .menu-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border: none;
        outline: none;
        padding: 6px;
        background-color: transparent;
        color: var(--clc-text-color);
    }

        .action-menu-item .menu-item.extendable.active {
            background-color: var(--clv-sidebar-background-selected);
        }

        .action-menu-item .menu-item.disable {
            pointer-events: none;
            opacity: 0.5;
        }

            .action-menu-item .menu-item.disable:hover {
                background-color: inherit;
            }

        /* 일반 버튼 */
        .action-menu-item .menu-item.button {
            padding: 6px 6px 6px 12px;
            min-width: 150px;
            border-radius: 10px;
            user-select: none;
            cursor: pointer;
            gap: 8px;
        }

            .action-menu-item .menu-item.button .icon {
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: inherit;
            }

                .action-menu-item .menu-item.button .icon.menu-extend {
                    margin-left: auto;
                }

            .action-menu-item .menu-item.button .label {
                font-size: 14px;
                text-align: left;
                color: inherit;
                white-space: nowrap;
                text-align: left;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        /* 체크 타입 버튼 */
        .action-menu-item .menu-item.check {
            padding: 6px 6px 6px 12px;
            border-radius: 10px;
            user-select: none;
            cursor: pointer;
            gap: 8px;
        }

            .action-menu-item .menu-item.check .icon {
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: inherit;
            }

                .action-menu-item .menu-item.check .icon.checked {
                    margin-left: auto;
                }

            .action-menu-item .menu-item.check .label {
                font-size: 14px;
                text-align: left;
                color: inherit;
                white-space: nowrap;
                text-align: left;
                margin-right: 50px;
            }

        /* 유저 프로필 */
        .action-menu-item .menu-item.profile {
            padding: 6px;
            min-height: 48px;
            max-width: 100%;
            min-width: 225px;
            border-radius: 10px;
            user-select: none;
            cursor: pointer;
            overflow: hidden;
            gap: 8px;
            background-color: var(--clv-sidebar-background-hover);
        }

            .action-menu-item .menu-item.profile .profile-image {
                display: flex;
                flex-shrink: 0;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                overflow: hidden;
                width: fit-content;
                height: fit-content;
                background-color: var(--clc-assign-base-200);
            }

                .action-menu-item .menu-item.profile .profile-image img {
                    display: block;
                    width: 40px;
                    height: 40px;
                    object-fit: cover;
                }

            .action-menu-item .menu-item.profile .profile-infos {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                font-family: "Pretendard";
                font-size: 0.825rem;
                font-weight: normal;
                min-width: 0;
            }

                .action-menu-item .menu-item.profile .profile-infos span {
                    display: block;
                    max-width: 100%;
                    overflow: hidden;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                }

        /* 채팅방 유저 모음 */
        .action-menu-item .menu-item.chatroomusers {
            flex-direction: column;
            align-items: flex-start;
            padding: 0;
            min-height: 0;
            height: fit-content;
            max-height: 300px;
            width: fit-content;
            min-width: 200px;
            max-width: 100%;
            border-radius: 10px;
            user-select: none;
            cursor: default;
            overflow-y: auto;
            overflow-x: hidden;
            margin-bottom: 2px;
            gap: 2px;
            /*            background-color: var(--clv-sidebar-background-hover);*/
        }

            .action-menu-item .menu-item.chatroomusers .label {
                display: block;
                font-family: "Pretendard";
                font-size: 0.825rem;
                font-weight: normal;
                padding-left: 4px;
            }

            .action-menu-item .menu-item.chatroomusers .profile-container {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 100%;
                min-width: 0;
                border: 1px solid var(--clv-sidebar-border);
                border-radius: 10px;
                background: var(--clv-sidebar-background);
                padding: 2px;
                gap: 2px;
            }

            .action-menu-item .menu-item.chatroomusers .profile-wrap {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                min-width: 0;
                border-radius: 8px;
                padding: 6px;
                gap: 6px;
                cursor: pointer;
            }

                .action-menu-item .menu-item.chatroomusers .profile-wrap .profile-image {
                    display: flex;
                    flex-shrink: 0;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    overflow: hidden;
                    width: fit-content;
                    height: fit-content;
                    background-color: var(--clc-assign-base-200);
                }

                    .action-menu-item .menu-item.chatroomusers .profile-wrap .profile-image img {
                        display: block;
                        width: 20px;
                        height: 20px;
                        object-fit: cover;
                    }

                .action-menu-item .menu-item.chatroomusers .profile-wrap .profile-infos {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;
                    font-family: "Pretendard";
                    font-size: 0.825rem;
                    font-weight: normal;
                    min-width: 0;
                }

                    .action-menu-item .menu-item.chatroomusers .profile-wrap .profile-infos span {
                        display: block;
                        max-width: 100%;
                        overflow: hidden;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        letter-spacing: 0;
                    }
