.container {
    flex: 1;
    display: flex;
    overflow-y: auto;
}

.editor {
    flex: 1;
    outline: none;
    overflow-y: auto;
    font-size: var(--font-size);
    user-select: none;
    pointer-events: all;
    cursor: default;
    min-width: 25%;
    padding: 0.25rem;
    scrollbar-color: var(--scrollbar-color) var(--background-color);
    scroll-behavior: smooth;
}
