._myrepair-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
}

._myrepair-modal._myrepair-show {
    display: flex;
}

._myrepair-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

._myrepair-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 95%;
    width: 800px;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

._myrepair-modal-header {
    padding: 0.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    text-align: right;
}

._myrepair-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

._myrepair-modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
}

._myrepair-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    ._myrepair-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: 100%;
    }
}