        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        .headder {
            padding: 10px;
            margin-bottom: 10px;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .header-title {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-title i {
            background: purple;
            color: white;
            padding: 15px;
            border-radius: 15px;
            font-size: 24px;
        }

        .header-title h1 {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logout-btn {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        .statss-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
            gap: 20px;
            margin-bottom: 10px;
        }

        .statss-cardd {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            gap: 20px;
        }

        .statss-cardd:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .statss-cardd i {
            font-size: 32px;
            margin-bottom: 15px;
            padding: 20px;
            border-radius: 12px;
            color: white;
        }

        .statss-cardd.total i { background: linear-gradient(135deg, #667eea, #764ba2); }
        .statss-cardd.pending i { background: linear-gradient(135deg, #ffa726, #ff9800); }
        .statss-cardd.successful i { background: linear-gradient(135deg, #66bb6a, #4caf50); }
        .statss-cardd.failed i { background: linear-gradient(135deg, #ef5350, #f44336); }

        .statss-number {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .statss-label {
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
        }

        .transactions-container {
            background: rgba(255, 255, 255, 0.5);
            padding: 10px;
            zoom: 0.9;
        }

        .transactions-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .transactions-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
        }

        .filter-btn {
            padding: 10px 20px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-color: transparent;
        }

        .transactions-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .transactions-table th,
        .transactions-table td {
            padding: 16px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }

        .transactions-table th {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            font-weight: 600;
            color: #333;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .transactions-table tr {
            transition: all 0.3s ease;
        }

        .transactions-table tr:hover {
            background: rgba(102, 126, 234, 0.05);
            transform: scale(1.01);
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-pending {
            background: rgba(255, 167, 38, 0.2);
            color: #ff9800;
        }

        .status-successful {
            background: rgba(76, 175, 80, 0.2);
            color: #4caf50;
        }

        .status-failed {
            background: rgba(244, 67, 54, 0.2);
            color: #f44336;
        }

        .action-buttons {
            display: flex;
            gap: 8px;
        }

        .action-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .approve-btn {
            background: linear-gradient(135deg, #66bb6a, #4caf50);
            color: white;
        }

        .approve-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
        }

        .decline-btn {
            background: linear-gradient(135deg, #ef5350, #f44336);
            color: white;
        }

        .decline-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(244, 67, 54, 0.3);
        }

        .action-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        .transaction-type {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .type-icon {
            padding: 8px;
            border-radius: 8px;
            color: white;
            font-size: 14px;
        }

        .type-deposit { background: linear-gradient(135deg, #66bb6a, #4caf50); }
        .type-withdrawal { background: linear-gradient(135deg, #ef5350, #f44336); }
        .type-transfer { background: linear-gradient(135deg, #42a5f5, #2196f3); }
        .type-link { background: linear-gradient(135deg, #ab47bc, #9c27b0); }
        .type-received { background: linear-gradient(135deg, #26c6da, #00bcd4); }

        .amount {
            font-weight: 600;
            font-size: 16px;
        }

        .loading {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 16px 24px;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            z-index: 10000;
            transform: translateX(400px);
            transition: all 0.3s ease;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            background: linear-gradient(135deg, #66bb6a, #4caf50);
        }

        .notification.error {
            background: linear-gradient(135deg, #ef5350, #f44336);
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .header-top {
                flex-direction: column;
                gap: 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .transactions-table {
                font-size: 14px;
            }

            .transactions-table th,
            .transactions-table td {
                padding: 12px 8px;
            }

            .action-buttons {
                flex-direction: column;
            }
        }

        .table-wrapper {
            margin: 0 -20px 0 -20px;
            overflow-x: auto;
            overflow-y: auto;
        }
    