 
        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

        body {
            font-family: 'Cairo', sans-serif;
            margin: 0;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .glass-sidebar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-left: 3px solid #facc15;
        }

        .dark .glass-sidebar {
            background: #0d0d0d;
            border-left: 3px solid #facc15;
            box-shadow: -15px 0 40px -20px rgba(250, 204, 21, 0.15);
        }

        .stat-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .dark .stat-card {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        .stat-card:hover {
            border-color: rgba(250, 204, 21, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
        }

        .dark .stat-card:hover {
            border-color: rgba(250, 204, 21, 0.3);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
        }

        .active-link {
            background: linear-gradient(90deg, rgba(250, 204, 21, 0.1) 0%, transparent 100%);
            border-right: 4px solid #facc15;
            color: #d97706;
        }

        .dark .active-link {
            color: #facc15;
        }

        /* سكرول بار عام */
        ::-webkit-scrollbar {
            width: 10px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        .dark ::-webkit-scrollbar-track {
            background: #050505;
        }

        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 10px;
        }

        .dark ::-webkit-scrollbar-thumb {
            background: #1f2937;
        }

        /* سكرول بار مخصص للإشعارات */
        .custom-scrollbar::-webkit-scrollbar {
            width: 4px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: transparent;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(156, 163, 175, 0.2);
            border-radius: 10px;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: rgba(250, 204, 21, 0.4);
        }

        #sidebar {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #main-content {
            transition: margin-right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sidebar-hidden {
            transform: translateX(100%) !important;
        }

        .content-full {
            margin-right: 0 !important;
        }

        @media (max-width: 1023px) {
            #sidebar {
                transform: translateX(100%);
            }

            #main-content {
                margin-right: 0 !important;
            }

            #sidebar.mobile-show {
                transform: translateX(0) !important;
            }
        }

        .status-active {
            color: #22c55e;
            font-weight: bold;
        }

        .status-inactive {
            color: #ef4444;
            font-weight: bold;
        }

        .status-warning {
            color: #e4ab00;
            font-weight: bold;
        }

        .btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: #3b82f6;
            color: rgb(0, 0, 0);
        }

        .btn-primary:hover {
            background-color: #69a2ff;
        }

        .btn-warinig {
            background-color: #e4ab00;
            color: rgb(0, 0, 0);
        }

        .btn-warinig:hover {
            background-color: #f8ca40;
        }

        .btn:active {
            transform: scale(0.95);
        }

        /* Danger */
        .btn-danger {
            background-color: #ef4444;
            color: rgb(0, 0, 0);
        }

        .btn-danger:hover {
            background-color: rgb(255, 82, 82);
        }

        /* Success */
        .btn-success {
            background-color: #22c55e;
            color: rgb(0, 0, 0);
        }

        .btn-success:hover {
            background-color: #5df896;
        }

        /* Light */
        .btn-light {
            background-color: #f3f4f6;
            color: #111;
        }

        .btn-light:hover {
            background-color: #e5e7eb;
        }

        /* لدمج اللوجو مع الخلفية */
        .dark img[src="unnamed.jpg"] {
            mix-blend-mode: screen;
            filter: contrast(1.1) brightness(1.1);
        }

        .light img[src="unnamed.jpg"] {
            mix-blend-mode: multiply;
        }

