.popup-banner {
    width: 90vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.popup-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-banner img {
    width: 100%;	
    height: auto;
    /* max-width: 800px; */
    margin-bottom: 10px;
    border-radius: 4px;
}

.close-btn {
    padding: 8px 15px;
    color: white;
    cursor: pointer;
}

/* @media screen and (max-width: 900px) {
    .popup-banner img {
        max-width: 100%;
    }
} */