/* إزالة الأنيميشن والحركة من الأزرار والقوائم المنسدلة */

/* إزالة التأثيرات الحركية من الأزرار العامة */
.btn {
    transition: none !important;
}

.btn:hover {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.btn:active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من الأزرار الصغيرة */
.btn-sm {
    transition: none !important;
}

.btn-sm:hover {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* إزالة التأثيرات الحركية من أزرار التبديل */
.view-toggle-buttons .btn {
    transition: none !important;
}

.view-toggle-buttons .btn:hover {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.view-toggle-buttons .btn:active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من القوائم المنسدلة */
.status-select-dropdown {
    transition: none !important;
}

.status-select-dropdown:hover {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.status-select-dropdown:active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من القائمة المنسدلة للإشعارات */
.notification-dropdown {
    animation: none !important;
}

.notification-item:hover {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من عناصر القائمة المنسدلة */
.dropdown-menu {
    animation: none !important;
}

.dropdown-item {
    transition: none !important;
}

.dropdown-item:hover {
    transform: none !important;
}

.dropdown-item:active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من القوائم القابلة للبحث */
.searchable-dropdown .searchable-input {
    transition: none !important;
}

.searchable-dropdown .searchable-input:focus {
    transform: none !important;
    animation: none !important;
}

.searchable-dropdown .searchable-input:hover {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من قائمة البحث */
.dropdown-list > div {
    transition: none !important;
}

.dropdown-list > div:hover {
    transform: none !important;
}

.dropdown-list > div:active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من أزرار الإشعارات */
.notification-bell {
    transition: none !important;
}

.notification-bell:hover {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.notification-bell:active {
    transform: none !important;
}

/* إزالة أنيميشن رنين الجرس */
.notification-bell:hover .bell-icon {
    animation: none !important;
}

/* إزالة التأثيرات الحركية من تبويبات الإحصائيات */
.stat-tab {
    transition: none !important;
}

.stat-tab:hover {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.stat-tab.active {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

/* إزالة التأثيرات الحركية من البطاقات القابلة للنقر */
.clickable-card {
    transition: none !important;
}

.clickable-card:active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من صفوف الجداول */
.orders-list tbody tr {
    transition: none !important;
}

.orders-list tbody tr:hover {
    transform: none !important;
    box-shadow: none !important;
}

.orders-list tbody tr:active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من حقول الإدخال */
.form-input {
    transition: none !important;
}

.form-input:focus {
    transform: none !important;
    animation: none !important;
}

.form-input:hover {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من عناصر التنقل */
.nav-item {
    transition: none !important;
}

.nav-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

.nav-item.active {
    transform: none !important;
}

/* إزالة التأثيرات الحركية من بطاقات الإحصائيات */
.stat-card {
    transition: none !important;
}

.stat-card:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* إزالة التأثيرات الحركية للجوال */
@media (max-width: 768px) {
    .notification-dropdown {
        animation: none !important;
    }
    
    .dropdown-menu {
        animation: none !important;
    }
    
    .notification-item:hover {
        transform: none !important;
    }
    
    .form-input:focus,
    .searchable-dropdown .searchable-input:focus {
        transform: none !important;
    }
    
    .form-input:hover,
    .searchable-dropdown .searchable-input:hover {
        transform: none !important;
    }
}