/* Overlay Full Screen */
#eyedee-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    /* Darken */
    z-index: 99999999;
    /* Very high z-index */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

/* Wrapper */
.eyedee-popup-content-wrapper {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: eyedeeFadeIn 0.4s ease-out;
}

@keyframes eyedeeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close Button */
#eyedee-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #333;
    border: 2px solid #333;
    border-radius: 50%;
    font-size: 24px;
    line-height: 28px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

#eyedee-popup-close:hover {
    background: #eee;
}

/* Image */
.eyedee-popup-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
}

/* CTA Button */
.eyedee-popup-btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 5px;
    padding: 12px 24px;
    background-color: #e91e63;
    /* Pinkish color as requested */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.eyedee-popup-btn:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
    color: #fff;
}

/* Footer (Link) */
.eyedee-popup-footer {
    margin-top: 15px;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.eyedee-no-show-link {
    color: #f1f1f1;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    background: transparent;
    padding: 5px;
}

.eyedee-no-show-link:hover {
    opacity: 1;
    color: #fff;
}