.page-header {
    text-align: center;
    margin: 40px 0;
}

.page-header h1 {
    color: #333;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 18px;
}

/* Statistics */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Withdrawals Table */
.withdrawals-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.withdrawals-table {
    width: 100%;
    border-collapse: collapse;
}

.withdrawals-table thead th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

.withdrawals-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.withdrawals-table tbody tr:hover {
    background: #f8f9fa;
}

.loading-cell {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Username styling */
.username {
    font-weight: 500;
    color: #667eea;
}

/* Method badge */
.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 14px;
}

.method-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Status */
.status-paid {
    color: #10b981;
    font-weight: 500;
}


/* Responsive */
@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .withdrawals-table {
        font-size: 14px;
    }
    
    .withdrawals-table thead th,
    .withdrawals-table tbody td {
        padding: 10px;
    }
}

/* Table info */
.table-info {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination {
    display: flex;
    gap: 5px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination button:hover:not(:disabled) {
    border-color: #667eea;
    color: #667eea;
    background: #f8f9ff;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination button.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination .dots {
    padding: 8px 4px;
    color: #666;
}

.page-info {
    color: #666;
    font-size: 14px;
}

/* Remove old load-more styles */
.load-more-container {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination-container {
        justify-content: center;
        text-align: center;
    }
    
    .pagination {
        order: 2;
    }
    
    .page-info {
        order: 1;
        width: 100%;
    }
}