import { StyleSheet } from 'react-native'; import { ThemeColors } from '../../theme'; export const getStyles = (colors: ThemeColors) => StyleSheet.create({ container: { marginBottom: 16, }, label: { fontSize: 14, fontWeight: '600', color: colors.text, marginBottom: 8, }, required: { color: '#EF4444', marginLeft: 2, }, pickerContainer: { backgroundColor: colors.surface, borderWidth: 1, borderColor: colors.border, borderRadius: 10, flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingHorizontal: 16, paddingVertical: 12, }, pickerText: { fontSize: 15, color: colors.text, }, placeholder: { color: colors.textMuted, }, });