/* Target the button on the deposit page */
.deposit-page button {
    position: relative;
}

/* Change the button text */
.deposit-page button::after {
    content: "I Have Paid"; /* New text */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit; /* Keep the same text color */
    font-size: inherit; /* Keep the same font size */
    font-weight: inherit; /* Keep the same font weight */
    background: transparent; /* Transparent background */
    pointer-events: none; /* Ensure the button remains clickable */
}

/* Hide the original text */
.deposit-page button span {
    visibility: hidden;
}