/* ============================================================
   no-select.css
   غیرفعال کردن قابلیت انتخاب متن در کل صفحه یا بخش‌های خاص
   ============================================================ */

/* ============================================================
   کلاس اصلی برای غیرفعال کردن انتخاب در کل صفحه
   ============================================================ */
.no-select-all {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* ============================================================
   کلاس برای غیرفعال کردن انتخاب فقط روی تکست‌ها
   ============================================================ */
.no-select-text {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* ============================================================
   کلاس برای اجازه انتخاب در المان‌های خاص (override)
   ============================================================ */
.allow-select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* ============================================================
   کلاس برای غیرفعال کردن انتخاب در فرم‌ها (اینپوت‌ها و تکست‌اریاها)
   ============================================================ */
.no-select-input input,
.no-select-input textarea,
.no-select-input select {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* ============================================================
   کلاس برای غیرفعال کردن انتخاب در دکمه‌ها
   ============================================================ */
.no-select-btn button,
.no-select-btn a,
.no-select-btn .btn {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* ============================================================
   کلاس برای غیرفعال کردن انتخاب فقط در جدول‌ها
   ============================================================ */
.no-select-table table,
.no-select-table td,
.no-select-table th,
.no-select-table tr {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* ============================================================
   کلاس برای غیرفعال کردن انتخاب در سلول‌های ادیتور
   ============================================================ */
.no-select-cell .editable-cell,
.no-select-cell .cell-textarea,
.no-select-cell .schedule-table td {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* ============================================================
   استثنا برای تکست‌اریاها و اینپوت‌ها (اجازه انتخاب در آنها)
   ============================================================ */
.no-select-all textarea,
.no-select-all input[type="text"],
.no-select-all input[type="number"],
.no-select-all input[type="email"],
.no-select-all input[type="tel"],
.no-select-all input[type="password"],
.no-select-all .allow-select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* ============================================================
   جلوگیری از درگ کردن تصاویر و لینک‌ها
   ============================================================ */
.no-drag {
    -webkit-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important;
}

/* ============================================================
   جلوگیری از انتخاب متن در کل صفحه با استفاده از * (استفاده نکنید مگر ضروری)
   ============================================================ */
/*
.no-select-all * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
*/

/* ============================================================
   ریسپانسیو - تنظیمات برای موبایل
   ============================================================ */
@media (max-width: 768px) {
    .no-select-mobile {
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* اجازه انتخاب در اینپوت‌ها در موبایل */
    .no-select-mobile input,
    .no-select-mobile textarea,
    .no-select-mobile select {
        -webkit-user-select: text !important;
        -moz-user-select: text !important;
        -ms-user-select: text !important;
        user-select: text !important;
    }
}