Create a simple counter widget that displays a list of items with individual count values. Each item shows a rounded pill-style display with increment buttons.
Requirements:
- Create a container with class `counter-widget` that holds all counter items
- Add three counter items, each with class `counter-item`
- Each counter item must contain:
- A label element with class `item-label` (text can be any item name like "Apples", "Books", etc.)
- A span with class `count-display` showing the current count (starting at 0)
- A button with class `increment-btn` containing a "+" symbol
- Clicking an increment button should increase only that item's count by 1
- Use rounded corners and friendly pill shapes for the counter items
- Display the count between the label and button