/* كلاس يمنع تحديد النص ونسخه */
.select-none {
    -webkit-user-select: none;
    /* كروم وسفاري */
    -moz-user-select: none;
    /* فايرفوكس */
    -ms-user-select: none;
    /* انترنت اكسبلورر */
    user-select: none;
    /* البقية */
    cursor: not-allowed;
    /* يخلي الماوس شكله ممنوع */
}
/* تحسين الأنماط */
.stat-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.profile-card {
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.info-card {
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

/* زر تيك توك رسمي */
.tiktok-btn-official {
    background: #000000;
    color: white;
    border: 1px solid #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tiktok-btn-official:hover {
    background: #111111;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* تأثيرات الصورة */
.profile-image-container {
    position: relative;
}

.profile-image-container::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, #e5e7eb, #d1d5db);
    border-radius: 50%;
    z-index: -1;
}

/* تحسين الاستجابة */
@media (max-width: 768px) {
    .stat-box {
        padding: 0.75rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
}
/* تأثيرات إضافية للبطاقة */
.profile-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.animate-pulse {
    animation: pulse-glow 2s infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
/* CSS معدل بألوان هادئة وناعمة */
.compact-search-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%); /* بنفسجي فاتح */
    border-radius: 16px;
    border: 2px solid #f3e8ff; /* بنفسجي فاتح جداً */
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(107, 114, 128, 0.1);
}

.search-mini-header {
    margin-bottom: 20px;
    text-align: center;
}

.mini-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #7c3aed; /* بنفسجي لطيف */
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mini-title i {
    color: #c084fc; /* بنفسجي فاتح */
}

.compact-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.compact-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.field-header {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.icon-sm {
    font-size: 0.9rem;
    color: #c084fc; /* بنفسجي فاتح */
}

.field-label-sm {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280; /* رمادي */
    white-space: nowrap;
}

/* قائمة منسدلة بألوان هادئة */
.compact-select {
    width: auto;
    min-width: 150px;
    max-width: 200px;
    padding: 10px 35px 10px 15px;
    border: 2px solid #e5e7eb; /* رمادي فاتح */
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4b5563; /* رمادي متوسط */
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c084fc' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 15px center;
    background-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
}

.compact-select:hover {
    border-color: #d8b4fe; /* بنفسجي فاتح */
    background-color: #faf5ff; /* خلفية بنفسجي فاتح جداً */
}

.compact-select:focus {
    outline: none;
    border-color: #c084fc; /* بنفسجي فاتح */
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.1);
}

.compact-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

/* زر البحث - قريني */
.compact-btn.search {
    background: linear-gradient(45deg, #9ca3af, #6b7280); /* رمادي */
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    height: 42px;
    white-space: nowrap;
    padding: 10px 15px;
}

.compact-btn.search:hover {
    background: linear-gradient(45deg, #6b7280, #4b5563); /* رمادي أغمق */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.2);
}

/* زر الإعادة - بنفسجي فاتح */
.compact-btn.reset {
    background: #f3e8ff; /* بنفسجي فاتح جداً */
    color: #7c3aed; /* بنفسجي */
    border: 2px solid #e9d5ff; /* بنفسجي فاتح */
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    height: 42px;
    width: 42px;
}

.compact-btn.reset:hover {
    background: #e9d5ff; /* بنفسجي فاتح */
    color: #6b21a8; /* بنفسجي غامق */
    border-color: #c084fc; /* بنفسجي فاتح */
}

/* فلتر نشط - سماوي فاتح */
.compact-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f9ff; /* سماوي فاتح */
    border-radius: 10px;
    padding: 8px 15px;
    margin-top: 15px;
    border: 2px solid #bae6fd; /* سماوي */
}

.active-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0369a1; /* سماوي غامق */
    font-weight: 600;
    font-size: 0.9rem;
}

.active-text i {
    color: #0ea5e9; /* سماوي */
}

.remove-filter {
    color: #dc2626; /* أحمر للتناقض */
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.remove-filter:hover {
    color: #b91c1c; /* أحمر غامق */
    text-decoration: underline;
}

/* تصميم للجوال */
@media (max-width: 768px) {
    .compact-search-wrapper {
        padding: 15px;
    }
    
    .compact-filters-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .compact-field {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .compact-select {
        width: 100%;
        max-width: 100%;
    }
    
    .compact-actions {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .mini-title {
        font-size: 1.2rem;
    }
    
    .compact-btn.reset {
        width: 100%;
        min-width: auto;
    }
}

