/* Gutenberg Editor Post Title */
.editor-styles-wrapper h1.wp-block-post-title{
    text-align: center;
}

/* Block Visibility Gutenberg ToolBar Button */
.editor-styles-wrapper .kss-bv-hidden {
    opacity: 0.4;
    outline: 2px dashed #cc3344;
    outline-offset: 2px;
    position: relative;
}

.editor-styles-wrapper .kss-bv-hidden::after {
    content: "Versteckt";
    position: absolute;
    top: -10px;
    left: -10px;
    background: #cc3344;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Spacing Ziwischen Blöcken im Backend */

.editor-styles-wrapper .is-root-container > *:not(#fakeID) {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* add hover effect to the element in the editor */
.editor-styles-wrapper .block-editor-block-list__block:hover {
    outline: 2px dashed #0073aa;
    outline-offset: 2px;
    position: relative;
    transition: outline 0.2s ease-in-out;
} 
