handlePromptSelect(item)}
style={{
padding: '10px 16px',
cursor: 'pointer',
background: selectedPrompt?.id === item.id ? '#e6f4ff' : 'transparent',
borderLeft: selectedPrompt?.id === item.id ? '4px solid #1677ff' : '4px solid transparent',
transition: 'all 0.3s'
}}
>
{item.name}
{item.is_default === 1 && }
{!item.is_active &&
}
)}
/>