    .modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.85);
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background-color: #fff;
        width: 85%;
        height: 90%;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .modal-content kicanvas-embed {
        flex: 1;
        border: none;
    }

    .view-btn {
        margin-top: 10px;
        margin-right: 10px;
        padding: 8px 16px;
        font-size: 14px;
        cursor: pointer;
    }