/* Editor css for items */

/* Remove the max width on the editor items */

.editor-styles-wrapper .block-editor-block-list__block.wp-block[data-type="ppablocks/item"] {
    max-width: 100%;
}

/* Make sure ghost images are displayed as block */

.editor-styles-wrapper .block-editor .editor-styles-wrapper .ppa-ghost img {
    display: block;
}

/* Set the width and margins on white-bordered boxes */

.editor-styles-wrapper .ppa-itemtype-white-bordered-box .wp-block[data-type="ppablocks/item"] {
    flex-basis: 30%;
    width: 30%;
    min-width: 30%;
    max-width: 30%;
    margin: 0 5% 5% 0;
}

.editor-styles-wrapper .ppa-itemtype-white-bordered-box .block-editor-block-list__block.wp-block[data-type="ppablocks/item"]:nth-of-type(3n) {
    margin-right: 0;
}

/* re-adjust the width of the content to 100% of the flex container */

.editor-styles-wrapper .ppa-itemtype-white-bordered-box .block-editor-block-list__block.wp-block[data-type="ppablocks/item"] .ppablocks-item {
    width: 100%;
    max-width: 100%;
    margin: 0;
}