Styled Container - Copy this React, Tailwind Component to your project
Create a React component that simulates a product search results page, similar to Mercado Libre, using Material UI. The component should include the following elements: Main Container: A Container that spans the entire screen. Search Title: A Typography element displaying the title with the text "Beeper motorola" and the number of results (e.g., "118 results"). Filters: A Box on the left for filters containing: A FormControlLabel with a Checkbox for "Free shipping". Another FormControlLabel with a Checkbox for "International purchase". A Typography stating "Maximum range". A group of FormControlLabel with RadioButtons for different range options (4 km or less, 4 to 14 km, 15 to 34 km, 35 km or more). Product Results: A Material UI Grid to display the products: Each product should be in a Card containing: An image (using CardMedia). A CardContent with: Typography for the product name. Typography for the price. A Button for actions like "Buy". Styles: Ensure the layout is responsive and uses Material UI's grid system.
