/* genmemoembedded.css */
#genmemoTextarea { 
  font-size: 12px;   /* vaste basis */
  line-height: 1.4;  /* optioneel: leesbaarder */
  border: 1px solid #ccc; 
  border-radius: 2px; 
  padding: 6px; 
  min-height: 0; 
	flex:1;	height: 100%;            /* vaste hoogte */
  overflow-y: scroll;       /* verticale scrollbar altijd zichtbaar*/
  overflow-x: hidden;       /* horizontale scrollbar voorkomen */  
	color: black;
	height: 320px;
	background:white;
	resize:none;
	box-sizing: border-box; /* border+padding in de width meerekenen */
	scrollbar-gutter: stable; /* moderne browsers: houdt scrollbalkruimte gelijk */
	margin-left: 5px;
}

 /* === Editor (basis) === */
#geneditor { 
/*  font-size: 14.001px;   /* vaste basis */
  font-size: 12px;   /* vaste basis */
  line-height: 1.4;  /* optioneel: leesbaarder */
  border: 1px solid #ccc; 
  border-radius: 2px; 
  padding: 6px; 
  min-height: 0; 
  overflow-y: scroll;       /* verticale scrollbar altijd zichtbaar*/
  overflow-x: hidden;       /* horizontale scrollbar voorkomen */  
	color: black;
	flex:1 ;
	height: 320px;
	background:white;
	box-sizing: border-box; /* border+padding in de width meerekenen */
	min-width: 0;       /* voorkomt dat flex ze groter duwt */
	margin-left: 5px;
}
