/*
 * CKEditor 5 theme style.
 * !!!!!!!!!!!!!!!!!!Upravuje vzhled (template) ckeditoru
 */
:root {
    /* Overrides the border radius setting in the theme. */
    --ck-border-radius: 6px;

    /* Overrides the default font size in the theme. */
    --ck-font-size-base: 12px;

    /* Helper variables to avoid duplication in the colors. */
    --ck-custom-background: #fff;
    --ck-custom-foreground: #d9d9d9;
    --ck-custom-border: #000;
    --ck-custom-white: hsl(0, 0%, 100%);

    /* -- Overrides generic colors. ------------------------------------------------------------- */
	--ck-color-base-border: var(--ck-custom-background);
    --ck-color-base-foreground: var(--ck-custom-background);
    --ck-color-focus-border: hsl(208, 90%, 62%);
    --ck-color-text: #474747;
	
	--ck-color-toolbar-background: #f5f5f5;


    /* -- Overrides the default .ck-button class colors. ---------------------------------------- */

    --ck-color-button-default-background: var(--ck-custom-background);
    --ck-color-button-default-hover-background: #dcdcdc;
    --ck-color-button-default-disabled-background: var(--ck-custom-background);

    --ck-color-button-on-background: var(--ck-custom-foreground);
    --ck-color-button-on-hover-background: #dcdcdc;


}

.ck.ck-content.ck-editor__editable.ck-editor__editable_inline.ck-focused{
	outline:var(--ck-custom-background);
	border:1px solid var(--ck-custom-background);
	box-shadow:none;
}