How to fit text into hover box in python plotly

Hello everyone.
I need to plot a world map and display some information in the hover box using plotly in python. But my text is too big to fit in the screen (I have attached one example at the end)

In my case I have the following code:

import plotly.express as px

fig = px.scatter_mapbox(df2, lat="latitude", lon="longitude", hover_name="Country", hover_data=["Breed"],
                    color_discrete_sequence=["fuchsia"], zoom=3, height=1000)
fig.update_layout(mapbox_style="open-street-map")
fig.update_layout(margin={"r":0,"t":0,"l":0,"b":0})
fig.update_layout(
    hoverlabel=dict(
        bgcolor="white",
        font_size=11,
        font_family="Rockwell"
    )
)

But in my case, some countries have too much information to display (Breeds). Like in the image below:

I have found this answer but did not work: Customize Hover Box Plotly: Python to Fit Text

Any ideas would be very appreciated.