I am trying to change the Bootstrap 5's accordion's "accordion-button" color when it is collapsed.
I tried below. It changes the background but not the button's icon color.
.accordion-button.collapsed {
color: white;
background: blue;
}
What should I do to change the down (collapsed) icon of the accordion for Bootstrap 5?