.notepad-body{
  padding:12px;
  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column;
}
.notepad-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
  font-size:11px;
  color:#8fa08f;
}
.notepad-toolbar span.clear-link{ cursor:pointer; color:var(--cyan); }
.notepad-body textarea{
  flex:1;
  width:100%;
  resize:none;
  background:#050705;
  color:var(--white);
  border:1px solid rgba(0,255,241,0.25);
  border-radius:4px;
  padding:10px;
  font-family:var(--mono);
  font-size:13px;
  line-height:1.5;
  outline:none;
  -webkit-user-select:text;
  user-select:text;
}
