/* Hide original text for both buttons */
#content-wrapper > div > div:nth-child(2) > a,
#content-wrapper > div > div.grid-33.tablet-grid-40.mobile-grid-100.floatRight.clearRight.hex-theme.theme-49aeed > a {
    color: transparent !important;
    position: relative; /* Ensures ::after is positioned correctly */
}

/* Replace "Vote Now" with "Donate Now" */
#content-wrapper > div > div:nth-child(2) > a::after,
#content-wrapper > div > div.grid-33.tablet-grid-40.mobile-grid-100.floatRight.clearRight.hex-theme.theme-49aeed > a::after {
    content: "Donate Now";
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap; /* Prevents line breaks */
}
