import {StyleSheet} from 'react-native';
import {COLORS, SPACING} from '@shared/theme';

export const styles = StyleSheet.create({
  container: {
    elevation: 4,
    gap: SPACING.x1,
    paddingHorizontal: SPACING.x3,
    paddingVertical: SPACING['x1.5'],
    shadowColor: COLORS.black,
    shadowOffset: {
      height: -8,
      width: 0,
    },
    shadowOpacity: 0.1,
    shadowRadius: 5,
  },
});
