/* CKEditor 5 Element Path */
.ck-editor .ckeditor5-element-path {
  box-sizing: border-box;
  min-height: 32px;
  padding: 4px 8px;
  border: 1px solid var(--ck-color-base-border, #ccced1);
  border-top: 0;
  background: var(--ck-color-toolbar-background, #f7f7f7);
  color: #555;
  font: 12px/22px sans-serif;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.ck-editor .ckeditor5-element-path__label {
  font-weight: 600;
  color: #333;
}

.ck-editor .ckeditor5-element-path__value {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.ck-editor .ckeditor5-element-path__item {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0 2px;
  background: transparent;
  color: #444;
  font: inherit;
  line-height: 22px;
  cursor: pointer;
  text-decoration: none;
}

.ck-editor .ckeditor5-element-path__item:hover,
.ck-editor .ckeditor5-element-path__item:focus {
  color: #0b63ce;
  text-decoration: underline;
  outline: none;
}

.ck-editor .ckeditor5-element-path__separator {
  color: #777;
  padding: 0 1px;
  user-select: none;
}
