/* 이미지 보호를 위한 CSS 스타일 */

/* 모든 이미지에 적용 */
img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    
    -webkit-user-drag: none !important;
    -moz-user-drag: none !important;
    -ms-user-drag: none !important;
    user-drag: none !important;
    
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    
    pointer-events: auto !important;
}

/* 텍스트 선택 방지 (입력 필드 제외) */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 입력 필드와 텍스트 영역은 선택 허용 */
input,
textarea,
[contenteditable="true"],
[contenteditable="true"] * {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* 링크는 클릭 가능하도록 */
a {
    pointer-events: auto !important;
}

/* 버튼도 클릭 가능하도록 */
button,
.btn,
[role="button"] {
    pointer-events: auto !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* 드래그 방지 */
* {
    -webkit-user-drag: none !important;
    -moz-user-drag: none !important;
    -ms-user-drag: none !important;
    user-drag: none !important;
}

/* 선택된 텍스트 스타일 제거 */
::selection {
    background: transparent !important;
    color: inherit !important;
}

::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}
