
    #satriadev-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #satriadev-popup-container {
        border-radius: 8px;
        /* padding: 30px; */
        position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        max-width: 90%;
        max-height: 90%;
        /* overflow-y: auto; */
    }
    .popup-type-image #satriadev-popup-container {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    #satriadev-popup-close {
        position: absolute;
        top: 4px;
        right: 4px;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #fff;
        display: inline-flex;
        padding: 4px;
        background: #000000;
        border-radius: 100px;
    }
    
    #satriadev-popup-close:hover {
        color: #000;
    }
    
    #satriadev-popup-content {
    }
    
    #satriadev-popup-content img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    #satriadev-popup-footer {
        border-top: 1px solid #eee;
        padding-top: 15px;
        margin-top: 15px;
        font-size: 14px;
    }
    