html:has(.editor-dialog) {
    overflow: hidden;
}

.editor-dialog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--color-overlay-dark-50);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editor-dialog-content {
    background: white;
    padding: var(--space-18);
    border-radius: var(--radius-3xl);
    width: var(--content-width);
    display: flex;
    flex-direction: column;
    gap: var(--space-15);
}