/**
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * ⚡ SEO - Protect
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 📁 파일명: /www/_acc/css/seo-protect.css
 * 📌 버전: v1.0
 * 📅 작성일: 2026-06-08
 * 📝 설명: 
 * - 마우스 드래그,클릭 방지
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 */
body.seo-protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.seo-protected img,
body.seo-protected .prompt-image,
body.seo-protected .prompt-text-content {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

body.seo-protected input,
body.seo-protected textarea,
body.seo-protected select,
body.seo-protected button,
body.seo-protected .allow-select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}