﻿/* 드래그/선택 불가 */
.no-drag {
    -webkit-user-select: none; /* iOS Safari */
    -webkit-touch-callout: none; /* 길게 누르기 메뉴 */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .no-drag img {
        -webkit-user-drag: none;
        user-drag: none;
        pointer-events: none;
    }

.display-hide {
    display: none !important;
}

.display-show {
    display: block !important;
}

.invisibility {
    visibility: hidden;
}

/* [PC/Mobile] 프로필 이미지 s */
.Custom-Empty-Profile {
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center
}

.Custom-Empty-Color1 {
    background-color: #007F73;
    color: #fff;
}

.Custom-Empty-Color2 {
    background-color: #28aee7;
    color: #fff;
}

.Custom-Empty-Color3 {
    background-color: #fbded8;
    color: #000;
}

.Custom-Empty-Color4 {
    background-color: #d2bba0;
    color: #fff;
}

.Custom-Empty-Color5 {
    background-color: #7469B6;
    color: #fff;
}

.detailProfile .Custom-Empty-Profile {
    font-size: 2rem;
}

.detail-page .Custom-Empty-Profile {
    font-size: 2.5rem;
}
/* 프로필 이미지 e */

/* [Mobile] 상세 프로필 s */
.detail-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    transition: 0.3s ease;
    transform: translateY(100%);
}

    .detail-page.show {
        opacity: 1;
        transform: translateY(0%);
    }

    .detail-page.dragging {
        transition: none;
    }
/* [Mobile] 상세 프로필 e */

/* [Mobile] 사용자 선택 고정 s */
#top-select-user-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
/* [Mobile] 사용자 선택 고정 e */


/* 사용자 테이블 행 hover 효과 s */
.POPG-Table tbody tr:hover {
    background-color: #f5f5f5;
    transition: background-color 0.2s ease;
}

    .POPG-Table tbody tr:hover .phone-extension:hover {
        font-weight: 500;
    }

    .POPG-Table tbody tr:hover .phone-mobile:hover {
        font-weight: 500;
    }

.infoDetail-dec-mobile:hover {
    text-decoration: underline;
}

.infoDetail-dec-officePhone:hover {
    text-decoration: underline;
}
/* 사용자 테이블 행 hover 효과 e */

/* 설정 영역 s */
.PORG-Settings-Wrap {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-top: 1px solid #E3E3E3;
    flex-shrink: 0;
}

.PORG-Settings-Row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    padding: 6px 0;
}

    .PORG-Settings-Row + .PORG-Settings-Row {
        border-top: 1px dashed #E3E3E3;
    }

.PORG-Settings-Label {
    width: 70px;
    color: #999;
    font-size: 13px;
    font-weight: 200;
    flex: 0 0 auto;
    white-space: nowrap;
}

.PORG-Settings-Input {
    height: 31px;
    font-size: 14px;
    font-weight: 200;
    padding: 0 10px;
    border: 1px solid #DFDFDF;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0px 0px 4px 0px rgba(212, 212, 212, 0.25);
    flex: 1 1 auto;
    min-width: 0;
    outline: none;
}

    .PORG-Settings-Input:focus {
        border-color: #5B5FC7;
    }

    .PORG-Settings-Input::placeholder {
        color: #999;
    }

/* 토글 스위치 */
.PORG-Settings-Switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex: 0 0 auto;
}

    .PORG-Settings-Switch input {
        display: none;
    }

    .PORG-Settings-Switch .PORG-Settings-Slider {
        width: 42px;
        height: 24px;
        border-radius: 999px;
        background: #d1d5db;
        position: relative;
        transition: .2s;
    }

        .PORG-Settings-Switch .PORG-Settings-Slider::after {
            content: "";
            position: absolute;
            left: 3px;
            top: 3px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,.2);
            transition: .2s;
        }

    .PORG-Settings-Switch input:checked + .PORG-Settings-Slider {
        background: #5B5FC7;
    }

        .PORG-Settings-Switch input:checked + .PORG-Settings-Slider::after {
            transform: translateX(18px);
        }

/* 버튼 */
.PORG-Settings-Btn {
    height: 33px;
    padding: 0 12px;
    border-radius: 3px;
    border: 1px solid #5B5FC7;
    background: #5B5FC7;
    color: #fff;
    font-size: 13px;
    font-weight: 200;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: none;
}

    .PORG-Settings-Btn:hover {
        background: #4a4fb5;
        border-color: #4a4fb5;
    }

    .PORG-Settings-Btn svg {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
    }

/* 버튼 행 여백 */
.PORG-Settings-Row-Download {
    padding-top: 10px;
}

.PORG-Settings-Row-Confirm {
    padding-top: 8px;
}
/* 전화 설정 영역 e */
