/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Donationbox Lightbox */
body.donationbox-lightbox-open {
    overflow: hidden;
}

.donationbox-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donationbox-lightbox-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    height: 85vh;
    max-height: 900px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.donationbox-lightbox-close {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.donationbox-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.donationbox-lightbox-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
