@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@media print {
	body {
		margin: 0 !important;
	}
}

:root {
	--ck-content-font-family: 'Lato';
}

.main-container {
	font-family: var(--ck-content-font-family);
	margin:0;
	padding:0;
	width: 100%;
	min-height: 250px;
	max-height: 250px;
}

.editor-container_classic-editor .editor-container__editor {
	width: 100%;
	height: 100%;
	margin:0;
	padding:5px;
}

.ck-editor__editable {
	min-height: 210px; /* Sets a minimum height */
	max-height: 210px; /* Sets a maximum height, enabling scrolling if content exceeds it */
	height: 210px; /* Sets a fixed height, overriding min-height and max-height */
	overflow-y: auto; /* Adds a scrollbar if content exceeds height */
}