/* === A&S Admin - Exact Replica of Main Site === */

body { 
    background-color: #0a0a0a; /* نفس لون bg-neutral-950 */
    color: white; 
    overflow-x: hidden; 
}

/* شريط التمرير المخصص (نفس الموجود بالموقع الأساسي) */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #171717; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #ca8a04; border-radius: 10px; }

/* النوافذ المنبثقة (Modals) */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 100; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.modal.active { display: flex; }

.hidden { display: none !important; }

/* تأثير الخدمات المقفلة في الفاتورة */
.locked-service { opacity: 0.5; pointer-events: none; border-color: #ca8a04 !important; background: rgba(202,138,4,0.05); }

/* أنيميشن الظهور المتدرج */
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fade-in 0.5s ease-out forwards; }
