I have a button:
dmc.Button(
DashIconify(icon="mdi:dice-5", width=30, color="white"),
color="rgb(8,81,156)",
size="xs",
radius="xl",
variant="gradient",
gradient = { 'from': str(color_home), 'to': str(color_away), 'deg': 135},
id="comp6_SELECTclick_randsquare",
)
which looks like this:

and I would like to add a shadow.
So I do this:
.button {box-shadow: 10px 10px; }
But nothing changes.
However, if I use the same css to the parent element, it works:
So the question: is there a way to override the “no shadow on buttons” with dmc?
