
        :root {
            --primary-color: #2563eb;
            --secondary-color: #f59e0b;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --white: #ffffff;
            --text-color: #334155;
            --border-color: #e2e8f0;
            --transition: all 0.3s ease;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Vazirmatn', sans-serif; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }



        /* صفحه بندی */
        .orders-wrapper { padding: 40px 0; }
        .page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
        .page-title { font-size: 2rem; color: var(--dark); font-weight: 800; }

        /* نوار ابزار */
        .toolbar { display: flex; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        .search-box { flex: 1; position: relative; min-width: 250px; }
        .search-input { width: 100%; padding: 12px 40px; border: 1px solid var(--border); border-radius: 50px; outline: none; }

        .filter-select { padding: 10px 20px; border: 1px solid var(--border); border-radius: 50px; font-family: inherit; outline: none; background: var(--white); }

        /* جدول سفارشات */
        .table-container { background: var(--white); border-radius: 12px; overflow-x: auto; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
        table { width: 100%; border-collapse: collapse; min-width: 800px; }

        th { background: #f8fafc; padding: 15px; text-align: right; font-weight: 700; color: #64748b; font-size: 0.9rem; border-bottom: 2px solid var(--border); }
        td { padding: 20px; border-bottom: 1px solid #f1f5f9; color: var(--text); font-size: 0.95rem; }
        tr:last-child td { border-bottom: none; }
        tr:hover { background-color: #fcfcfc; }

        /* وضعیت */
        .status-badge { padding: 6px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; display: inline-block; }
        .status-pending { background: #fef3c7; color: #d97706; } /* زرد */
        .status-success { background: #dcfce7; color: #16a34a; } /* سبز */
        .status-cancel { background: #fee2e2; color: #ef4444; } /* قرم */

        /* دکمه‌ها */
        .btn-view { color: var(--primary); font-weight: 600; cursor: pointer; font-size: 0.9rem; }
        .btn-view:hover { text-decoration: underline; }
        .btn-print { background: var(--white); border: 1px solid var(--border); color: var(--text); padding: 8px 15px; border-radius: 8px; cursor: pointer; transition: 0.3s; }
        .btn-print:hover { background: #f1f5f9; }

        /* پیجینگ */
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
        .page-btn { padding: 10px 25px; border-radius: 8px; background: var(--white); border: 1px solid var(--border); color: var(--dark); cursor: pointer; transition: 0.3s; display: flex; align-items: center; }
        .page-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
        .page-link { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: var(--white); border: 1px solid var(--border); font-weight: 500; }
        .page-link.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

        @media (max-width: 768px) { .toolbar { flex-direction: column; } }
