diff --git a/app/(admin)/reports.tsx b/app/(admin)/reports.tsx index 9e786c2..9f26fc3 100644 --- a/app/(admin)/reports.tsx +++ b/app/(admin)/reports.tsx @@ -9,6 +9,7 @@ import { ActivityIndicator, Alert, Linking, + Platform, ScrollView, StyleSheet, Text, @@ -376,6 +377,17 @@ const styles = StyleSheet.create({ borderWidth: 1, borderColor: COLORS.border, padding: SPACING.md, + ...Platform.select({ + ios: { + shadowColor: '#000', + shadowOffset: { width: 0, height: 2 }, + shadowOpacity: 0.04, + shadowRadius: 6, + }, + android: { + elevation: 2, + }, + }), }, kpiIcon: { width: 32,