/**
 * 小慧同學站台防護 CSS
 */

/* 一般訪客防護 */
.spg-protection-active * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* 表單元素例外 */
.spg-protection-active input,
.spg-protection-active textarea,
.spg-protection-active [contenteditable="true"] {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}

/* 圖片防護 */
.spg-protection-active img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: none !important;
}

/* 連結和按鈕可點擊 */
.spg-protection-active a,
.spg-protection-active button,
.spg-protection-active input[type="submit"],
.spg-protection-active input[type="button"] {
    pointer-events: auto !important;
}

/* 維持版面 */
.spg-protection-active,
.spg-protection-active * {
    box-sizing: border-box;
}