/**
 * Simple Security Protection CSS
 * Chỉ những style cơ bản cần thiết
 */

/* Cho phép chọn text trong input và textarea */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Cho phép click trên các link và button */
a, button, input, textarea, select {
    pointer-events: auto !important;
}