Index: pages/dashboard/admin/+Page.tsx
===================================================================
--- pages/dashboard/admin/+Page.tsx	(revision 4f2900a42af738556efd5fd79be1f104639d6108)
+++ pages/dashboard/admin/+Page.tsx	(revision 9d401519b3bf0bd9e64cdeb5785c06593e1a02a1)
@@ -352,25 +352,32 @@
                             }}>
                                 {data.pendingBuilds.map((build: any) => (
-                                    <Box key={build.id}>
+                                    <Box key={build.id} sx={{
+                                        display: 'flex',
+                                        flexDirection: 'column',
+                                        borderRadius: 2,
+                                        overflow: 'hidden',
+                                        bgcolor: 'background.paper'
+                                    }}>
                                         <BuildCard
                                             build={build}
                                             onClick={() => setSelectedBuildId(build.id)}
                                         />
-                                        <Box sx={{mt: 1, display: 'flex', gap: 1, justifyContent: 'center'}}>
-                                            <Button
-                                                variant="contained"
-                                                color="warning"
-                                                size="small"
-                                                startIcon={<BuildIcon/>}
-                                                onClick={(e) => {
-                                                    e.stopPropagation();
-                                                    openBuildApproval(build.id, build.name);
-                                                }}
-                                            >
-                                                Review
-                                            </Button>
-                                        </Box>
+                                        <Button
+                                            variant="contained"
+                                            color="warning"
+                                            size="small"
+                                            fullWidth
+                                            startIcon={<BuildIcon/>}
+                                            onClick={(e) => {
+                                                e.stopPropagation();
+                                                openBuildApproval(build.id, build.name);
+                                            }}
+                                            sx={{borderRadius: 0}}
+                                        >
+                                            Review
+                                        </Button>
                                     </Box>
                                 ))}
+
                             </Box>
                         )}
