 .org-visual {
background: url('https://ukroa.org/wp-content/themes/ukroa/assets/images/ukroa_cover_page.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
}

   .team-chapter-header::before {
background:url("https://ukroa.org/wp-content/themes/ukroa/assets/images/favicon.jpg");

  }




.paypal-donations {
    display: inline-block;
    position: relative;
    line-height: 0; /* Remove extra space below image */
}

input[type="image"][name="submit"] {
    display: block;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
    /* Hide the original PayPal image */
    opacity: 0;
  
}

input[type="image"][name="submit"]:hover {
    opacity: 0;
}

/* Show your custom donate image as default */
.paypal-donations::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ukroa.org/wp-content/themes/ukroa/assets/images/DONATE.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Show hover image on hover */
.paypal-donations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ukroa.org/wp-content/themes/ukroa/assets/images/sakelathan_button.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.paypal-donations:hover::before {
    opacity: 1;
}

.paypal-donations:hover::after {
    opacity: 0;
}