/* Frontend CSS for WP Traffic Siphon */

#wpts-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

#wpts-lightbox-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 9999;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 4px;
}

/* Popup content styles */
.wpts-popup-content {
    margin-bottom: 20px;
    text-align: center;
}

/* CTA button styles */
#wpts-cta-button {
    display: block;
    width: 100%;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
}

/* Close button */
#wpts-close-popup {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Hidden class to hide elements */
.wpts-hidden {
    display: none;
}
