/* Cause Page custom CSS - 2025*/

/* 
  Hides the top "Vote Now" button in the Kindful crowdfunding header ("billboard" section).
  This button is not tied to a specific team and should be removed to avoid untracked donations.
  Team-specific buttons below this section will remain visible and functional.
*/
.billboard .flat-btn.donate {
    visibility: hidden;
    pointer-events: none;
  }

/* Hide the Twitter/X share button on the Cause page */
.share-on-tw {
    display: none !important;
}

/* Target the first two "Vote Now" buttons in the teams list (Programs) */
a.additional-donation-button[href*="team_donate_id=116529"],
a.additional-donation-button[href*="team_donate_id=116603"] {
    color: transparent !important; /* Hide original text */
    position: relative;
}

/* Replace text with "Donate Now" */
a.additional-donation-button[href*="team_donate_id=116529"]::after,
a.additional-donation-button[href*="team_donate_id=116603"]::after {
    content: "Donate Now";
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}