 :root {
            --primary: #2E86AB;
            --secondary: #F18F01;
            --dark: #333;
            --light: #F7F7F7;
            --white: #FFFFFF;
            --gray: #E0E0E0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--dark);
        }
        
        .dashboard {
            display: flex;
            min-height: 100vh;
        }
        
        /* الشريط الجانبي */
        .sidebar {
            width: 250px;
            background-color: var(--primary);
            color: var(--white);
            padding: 20px 0;
            position: fixed;
            height: 100%;
        }
        
        .logo {
            text-align: center;
            padding: 20px 0;
            font-size: 24px;
            font-weight: 700;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 30px;
        }
        
        .nav-menu {
            list-style: none;
        }
        
        .nav-item {
            margin-bottom: 5px;
        }
        
        .nav-link {
            color: var(--white);
            text-decoration: none;
            display: block;
            padding: 12px 20px;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255,255,255,0.1);
        }
        
        .nav-link i {
            margin-left: 10px;
            width: 20px;
            text-align: center;
        }
        
        /* المحتوى الرئيسي */
        .main-content {
            flex: 1;
            margin-right: 250px;
            padding: 20px;
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--white);
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .user-info {
            display: flex;
            align-items: center;
        }
        
        .user-info img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 10px;
        }
        
        /* بطاقات الإحصائيات */
        .stats-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .stat-card h3 {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .stat-card .value {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .stat-card .info {
            display: flex;
            align-items: center;
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }
        
        .stat-card .info i {
            margin-left: 5px;
        }
        
        /* أزرار الإجراءات */
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .btn {
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 6px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #266b88;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: #d97f01;
        }
        
        .btn i {
            margin-left: 8px;
        }
        
        /* جدول القوائم */
        .menus-table {
            width: 100%;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 15px;
            text-align: right;
        }
        
        thead {
            background-color: var(--primary);
            color: var(--white);
        }
        
        th {
            font-weight: 500;
        }
        
        tbody tr {
            border-bottom: 1px solid var(--gray);
        }
        
        tbody tr:last-child {
            border-bottom: none;
        }
        
        tbody tr:hover {
            background-color: #f9f9f9;
        }
        
        .status {
            
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .status.active {
            
            background-color: #e3f7e8;
            color: #ffffff;
        }
        
        .status.expired {
            background-color: #ffebee;
            color: #ffffff;
        }
        
        .actions {
            display: flex;
            gap: 10px;
        }
        
        .action-btn {
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            background-color: transparent;
        }
        
        .edit-btn {
            color: var(--primary);
        }
        
        .delete-btn {
            color: #c62828;
        }
        
        .action-btn:hover {
            background-color: #f0f0f0;
        }
        
        @media (max-width: 992px) {
            .sidebar {
                width: 70px;
                overflow: hidden;
            }
            
            .logo span, .nav-link span {
                display: none;
            }
            
            .nav-link {
                text-align: center;
                padding: 15px 0;
            }
            
            .nav-link i {
                margin-left: 0;
                font-size: 20px;
            }
            
            .main-content {
                margin-right: 70px;
            }
        }
        
        @media (max-width: 768px) {
            .stats-cards {
                grid-template-columns: 1fr;
            }
            
            .action-buttons {
                flex-direction: column;
            }
        }