.accordion-button::after {
    margin-left: 0;
    margin-right: auto;
    /* Pushes the arrow to the left in RTL */
}

.accordion-button {
    text-align: right;
    /* Ensure text is right-aligned */
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    /* Optional: Keep background white/transparent when open if preferred */
    color: var(--thm-base) !important;
    box-shadow: none !important;
    /* Remove focus shadow */
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, .125);
}