/* assets/css/custom.css */
.donation-popup-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.donation-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.donation-popup-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.donationClose {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.donationClose:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

body.popup-opened {
    overflow: hidden;
}