/* assets/style.css */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f4f6f9;
    direction: rtl;
    text-align: right;
}

/* تحسين شكل الجدول */
.card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

table.dataTable thead th {
    background-color: #343a40;
    color: #fff;
    border-bottom: none;
    padding: 12px 15px;
}

table.dataTable tbody td {
    padding: 10px 15px;
    vertical-align: middle;
}

/* تنسيق الأزرار */
.dt-buttons .btn {
    margin-left: 5px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* تحسين حقل البحث */
div.dataTables_wrapper div.dataTables_filter input {
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 5px 10px;
    width: 250px;
}

/* حالة التحميل */
div.dataTables_processing {
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}