### Common styling adjustments
**Adjusting positioning:**
Use `transform: translateY(Npx)` to adjust the vertical positioning of the selectors. This ensures that the selectors match the line height of your logo for better visual alignment.
**Enhancing visual prominence:**
You can modify the border radius and add borders to make the selectors more prominent and better integrated with your site's design aesthetic.
```css
.fern-product-selector {
transform: translateY(2px);
border-radius: 8px;
border: 1px solid var(--border);
}
.fern-version-selector {
transform: translateY(1px);
border-radius: 1000px;
border: 1px solid var(--border);
}
```
### Customize dropdown styling
The dropdown menus for product and version selectors can be customized using these specific CSS classes:
* `fern-product-selector-radio-group` - Controls the styling of the product dropdown
* `fern-version-selector-radio-group` - Controls the styling of the version dropdown
### Common Styling Adjustments
**Enable a grid layout for the dropdown:**
```css
.fern-product-selector-radio-group {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
```