.my-iframe-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.my-iframe-modal{
    width: 95%;
    max-width: 1200px;
    height: 85vh;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
}

.my-iframe-close{
    position: absolute;
    right: 10px;
    top: 8px;
    z-index: 2;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.my-iframe-modal > div {
    width: 100%;
    height: 100%;
}
