/* Directory: /assets/style.css */

/* ملف التنسيقات المخصصة
   GemiPrompts Custom Styles
*/

/* الخط العام للموقع */
body { 
    font-family: 'Cairo', sans-serif; 
}

/* تخصيص شريط التمرير (Scrollbar) */
::-webkit-scrollbar { 
    width: 8px; 
    height: 8px; 
}

::-webkit-scrollbar-track { 
    background: #f1f1f1; 
}

.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb { 
    background: #FF9D00; /* اللون البرتقالي الجديد */
    border-radius: 4px; 
}

::-webkit-scrollbar-thumb:hover { 
    background: #e65100; 
}

/* تحديث كلاس الزجاج (Glassmorphism) */
.glass-effect {
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .glass-effect {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* حركة التحميل (Loader Animation) */
.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #FF9D00; /* اللون البرتقالي */
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}

/* إخفاء شريط التمرير للعناصر الأفقية (مثل المدونة) */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* تحسينات إضافية للتحديد */
::selection {
    background-color: #FF9D00;
    color: white;
}