'bg-gradient-to-br from-blue-600 to-blue-700 text-white',
'default' => 'bg-white border border-gray-200'
];
$class = $classes[$type] ?? $classes['default'];
$text_class = $type === 'primary' ? 'text-white opacity-90' : 'text-gray-600';
$value_class = $type === 'primary' ? 'text-white' : 'text-gray-900';
?>
'bg-blue-600 text-white hover:bg-blue-700',
'secondary' => 'bg-white text-gray-700 border border-gray-300 hover:bg-gray-50',
'danger' => 'bg-red-600 text-white hover:bg-red-700'
];
$class = $classes[$type] ?? $classes['primary'];
?>
'text',
'name' => '',
'label' => '',
'value' => '',
'placeholder' => '',
'required' => false,
'description' => '',
'options' => [],
'class' => ''
];
$args = wp_parse_args($args, $defaults);
extract($args);
$required_attr = $required ? 'required' : '';
$field_id = 'sodino_' . $name;
?>