/**
 * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
:root {
  --ck-color-code-block-label-background: #757575;
}

.ck.ck-editor__editable pre[data-language]:after {
  content: attr(data-language);
  background: var(--ck-color-code-block-label-background);
  font-size: 10px;
  font-family: var(--ck-font-face);
  padding: var(--ck-spacing-tiny) var(--ck-spacing-medium);
  color: #fff;
  white-space: nowrap;
  line-height: 16px;
  position: absolute;
  top: -1px;
  right: 10px;
}

.ck.ck-code-block-dropdown .ck-dropdown__panel {
  max-height: 250px;
  overflow: hidden auto;
}

.ck-content pre {
  color: #353535;
  text-align: left;
  tab-size: 4;
  white-space: pre-wrap;
  direction: ltr;
  background: #c7c7c74d;
  border: 1px solid #c4c4c4;
  border-radius: 2px;
  min-width: 200px;
  margin: .9em 0;
  padding: 1em;
  font-style: normal;
}

.ck-content pre code {
  background: unset;
  border-radius: 0;
  padding: 0;
}

.ck.ck-editor__editable pre {
  position: relative;
}

/*# sourceMappingURL=index.css.map */