#text_editor {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 30;
  border-radius: 0px;
  overflow: hidden;
}

#text_editor_toolbar {

}

#text_editor_input {
    font-size: 2em;
    white-space: pre-wrap;
    width: 100%;
  outline: none; /* Remove focus outline */
  font-family: "Nunito", sans-serif;
  font-style: normal;
}

#text_editor_input span {
     font-size: inherit !important;
}

#text_editor_input:empty:before {
  content: attr(data-placeholder);
  color: #aaa; /* Placeholder text color */
}
#text_editor_input:focus {
  color: #000; /* Text color when focused */
}

#templateBar {
    width: 100%;
    display: block;
}

.hidden {
  display: none;
}
