/* إصلاح أخطاء العرض والتنسيق */

/* إصلاح الأزرار */
.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn i {
    display: inline-block !important;
    margin-right: 0.25rem;
}

/* إصلاح DataTables */
.dataTables_wrapper {
    width: 100%;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0.5rem;
}

/* إصلاح الرسوم البيانية */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.chart-container canvas {
    max-height: 300px;
}

/* إصلاح الإحصائيات */
.stats-card {
    min-height: 120px;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: inherit;
}

/* إصلاح الأخطاء العامة */
.error-hidden {
    display: none !important;
}

/* تحسين الاستجابة */
@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .chart-container {
        height: 250px;
    }
}