        .dashboard {
            /* display: flex; */
            min-height: 100vh;
        }

        /* Sidebar Styles */
        .sidebar {
            width: 260px;
            background: linear-gradient(180deg, #312e81 0%, #3730a3 100%);
            color: white;
            padding: 24px;
            transition: all 0.3s;
        }

        .sidebar.hidden {
            margin-left: -260px;
        }

        .sidebar-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .sidebar-logo {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #312e81;
        }

        .sidebar-title h1 {
            font-size: 20px;
            font-weight: 700;
        }

        .sidebar-title p {
            font-size: 12px;
            color: #c7d2fe;
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        .header {
            background: white;
            border-bottom: 1px solid #e5e7eb;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .menu-toggle {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .menu-toggle:hover {
            background: #f3f4f6;
        }

        .search-box {
            position: relative;
        }

        .search-box input {
            padding: 10px 10px 10px 40px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            width: 320px;
            font-size: 14px;
        }

        .search-box input:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .search-box i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .notification-btn {
            position: relative;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .notification-btn:hover {
            background: #f3f4f6;
        }

        .notification-badge {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .user-info p {
            font-size: 14px;
            font-weight: 600;
        }

        .user-info span {
            font-size: 12px;
            color: #6b7280;
        }

        /* Dashboard Content */
        .content {
            flex: 1;
            padding: 24px;
            overflow-y: auto;
        }



        .content-header h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .content-header p {
            color: #6b7280;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .stat-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 24px;
            transition: box-shadow 0.3s;
        }

        .stat-card:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .stat-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .stat-icon.blue {
            background: #3b82f6;
        }

        .stat-icon.green {
            background: #10b981;
        }

        .stat-icon.purple {
            background: #8b5cf6;
        }

        .stat-icon.orange {
            background: #f59e0b;
        }

        .stat-change {
            background: #dcfce7;
            color: #16a34a;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .stat-label {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
        }
        .card{
            padding: 20px;
            border-radius: 16px;
        }


        .amount {
            font-weight: 600;
        }

        .table-container {
            max-height: 350px;
            /* Adjust the height as needed */
            overflow-y: auto;
            border: 1px solid #dee2e6;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead th {
            position: sticky;
            top: 0;
            background-color: #f8f9fa;
            /* Header background */
            z-index: 2;
        }

        tbody tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .recent {
            font-size: 23px;
            font-weight: 600;
            margin-left: 10px;
        }
        .order-id{
            color:#643bf6;
            font-weight: 600;
        }
        .amount{
            color:#10b981;
            font-weight: 600;
        }


        @media (max-width: 768px) {
            .search-box input {
                width: 200px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .table-container {
                max-height: 200px;
            }

            table {
                font-size: 14px;
            }
        }