/* استيراد خط طاجاوال */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

/* قواعد عامة */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f5f7fb;
}

/* جدول البيانات */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.table th {
    background-color: #f8f9fa;
    border: none;
    font-weight: 500;
    color: #596882;
}

.table td {
    border-color: #f0f0f0;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,0.01);
}

/* بطاقات الإحصائيات */
.stat-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .card-body {
    padding: 20px;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 15px;
}

.stat-card .stat-count {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    color: #596882;
    font-size: 16px;
}

/* أزرار وعناصر النموذج */
.form-control, .form-select {
    border-radius: 8px;
    border-color: #eaedf1;
    padding: 10px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: #5066e1;
    box-shadow: 0 0 0 0.25rem rgba(80, 102, 225, 0.25);
}

.btn {
    border-radius: 8px;
    padding: 8px 15px;
}

.btn-icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* ألوان الحالة */
.status-present {
    color: #28a745;
}

.status-late {
    color: #ffc107;
}

.status-absent {
    color: #dc3545;
}

/* أيقونات وشارات */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.badge-primary {
    background-color: rgba(80, 102, 225, 0.1);
    color: #5066e1;
}

.badge-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.badge-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #d39e00;
}

.badge-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .main-content {
        margin-right: 0;
        padding: 15px;
    }
    
    .sidebar .nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar .nav-item {
        margin-right: 10px;
    }
} 