.studiopopup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.studiopopup-content {
    border-radius: 8px;
    position: relative;
    text-align: left;
    overflow-y: auto; /* Changed from hidden to auto for scrollable content */
    max-height: 90vh;
    max-width: 90vw;
    width: 100%;
    box-sizing: border-box;
    padding: 20px; /* Default padding for visibility */
    background: #ffffff; /* Fallback background */
}

.studiopopup-content p {
    margin-bottom: 1em;
}

.studiopopup-content img {
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .studiopopup-content {
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .studiopopup-content {
        max-width: 90vw;
    }
}

.studiopopup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    z-index: 10000;
}

.studiopopup-progress-bar {
    width: 100%;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.studiopopup-progress {
    width: 0;
    height: 5px;
    background: #0073aa;
}