import React from 'react'; interface HighlightBoxProps { title?: string; children: React.ReactNode; color?: 'primary' | 'secondary' | 'accent'; } const colorStyles = { primary: 'bg-gradient-to-br from-primary/10 to-primary/5 border-primary/30', secondary: 'bg-gradient-to-br from-blue-50 to-blue-100/50 border-blue-200', accent: 'bg-gradient-to-br from-green-50 to-green-100/50 border-green-200', }; export default function HighlightBox({ title, children, color = 'primary' }: HighlightBoxProps) { return (