/* تنسيقات عامة وسريعة */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    background-color: #f4f6f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* شريط التنقل الجانبي الاحترافي الثابت */
.sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding-top: 20px;
    z-index: 1000;
}
.sidebar .brand {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 10px 20px 20px 20px;
    border-bottom: 1px solid #334155;
    margin-bottom: 20px;
    color: #38bdf8;
}
.sidebar a {
    display: block;
    padding: 14px 20px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 0.95rem;
}
.sidebar a:hover, .sidebar a.active {
    background-color: #334155;
    color: #fff;
    border-right: 4px solid #38bdf8;
}

/* منطقة عرض المحتوى */
.main-content {
    margin-right: 260px;
    padding: 40px;
}

/* بطاقات الأقسام المتباعدة */
.section-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    padding: 35px;
    max-width: 950px;
    margin: 0 auto 35px auto;
}
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

/* عناصر الإدخال والمساحات */
.form-label {
    font-weight: 600;
    color: #475569;
}
.form-control, .form-select {
    border: 1px solid #cbd5e1;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* تباعدات مخصصة للأزرار والجداول */
.gap-2 { gap: 0.5rem !important; }
