#cb-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 10px;
    box-sizing: border-box;
}

#cb-popup-content {
    position: relative;
    display: inline-block; /* este es el que nos sirve */
    max-width: 90%;
    max-height: 90vh;
}


#cb-popup-content img {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Estilos generales */
#cb-popup-close {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 10000;
}

@media (max-width: 768px) {
    #cb-popup-close {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(0,0,0,0.7);
        color: #fff;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }
}


/* Desktop: ❌ afuera */
@media (min-width: 769px) {
    #cb-popup-content {
        max-width: 800px; /* imagen más grande en pantallas grandes */
    }
    #cb-popup-close {
        top: -12px;
        right: -12px;
        background: #fff;
        color: #000;
        border-radius: 50%;
        padding: 5px 10px;
        font-size: 20px;
    }
}