/* ==============================================================================
   تنسيقات منصة حجز وتصاريح الروضة الشريفة (Assets Stylesheet)
   ============================================================================== */

/* تخصيص شريط التمرير (Scrollbar) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* تأثيرات ناعمة للبطاقات والأزرار */
.card-hover {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

/* علامة تظليل البحث التفاعلي */
mark {
    background-color: #fef08a;
    color: #1e293b;
    padding: 0 3px;
    border-radius: 3px;
    font-weight: 700;
}

/* تنسيقات الطباعة لاستخراج كشوف المعتمرين والتصاريح */
@media print {
    header, footer, button, #supabase-config-alert, .no-print {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}
