/* CSS المجمع للنظام */
/* تصميم عام */
body {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
}

/* تصميم النماذج */
.form-control, .form-select {
    border-radius: 6px;
    padding: 0.75rem 1rem;
    border-color: #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* تصميم الأزرار */
.btn {
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* تخطيط البطاقات */
.card {
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

/* تصميم الجداول */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: middle;
    border-bottom-width: 1px;
}

/* التنبيهات والرسائل */
.alert {
    position: relative;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
}

/* توافق RTL */
[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* تخطيط العناصر المخصصة */
.objective-item, .support-item, .training-item {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.objective-item:hover, .support-item:hover, .training-item:hover {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* أنماط CKEditor */
.ck-editor__editable {
    min-height: 200px;
} 