What class id is applepay button to add a border around it?

Topic summary

Goal: add a visible border to the Apple Pay button, which is hard to see against a black background and only appears on mobile.

What works: a custom “Buy Now” button styled via CSS (#_rsi-buy-now-button with an :after pseudo-element) successfully shows a 2px border.

What fails: attempting to style a PayPal button using a specific zoid selector (#zoid-paypal-buttons-uid_fadab4c35e_mtu6mda6mjc) with border and border-radius (including !important) does not affect either the PayPal or Apple Pay buttons.

Request: the correct class/id (CSS selector) or approach to target and add a border to the Apple Pay button specifically.

Status: unresolved; user seeks guidance on the appropriate selector or method to style the Apple Pay button on mobile. No confirmations, workarounds, or final solution provided yet.

Summarized with AI on December 12. AI used: gpt-5.

Im trying to add a border around my applepay button as it has little visibility due to my black background, this is my code to add a border to my buy now button, but i cant seem to do the same for the applepay one that only shows up on my phone

code to add border to buy now button:

#_rsi-buy-now-button {
position: relative;
}

#_rsi-buy-now-button:after {
position: absolute;
border: 2px solid #e9c8dc;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
content: “”;
}

ive gotten solutions like

#zoid-paypal-buttons-uid_fadab4c35e_mtu6mda6mjc { border: 2px solid rgb(190, 22, 102) !important; border-radius: 2px; }

and not only does this not add a border to the paypal one, not on the apple pay either, id really appreciate any help! thanks alot