/* ModelingEvolution.Ide.Blazor - Global styles for IDE components */

/* Monaco editor height fix - editor-instance is the CssClass on StandaloneCodeEditor */
/* These must be global (not scoped) because StandaloneCodeEditor is a child component */
.editor-instance {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100% !important;
    width: 100% !important;
}

.editor-instance .monaco-editor,
.editor-instance .monaco-editor .overflow-guard {
    height: 100% !important;
    width: 100% !important;
}
