#styleEditor {
  width: 362px;
  height: auto;
  background-color: var(--textArea-background-color2);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 60px auto;
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  padding: 40px;
  border-radius: 20px;
  font-size: 16px;
  border: 1px solid black;
  z-index: 16;
}

#inputTextFiel {
  grid-area: 1/1/2/2;
  width: 99%;
  border-radius: 5px;
  outline: none;
  border: none;
  word-break: break-all;
  border: 1px solid white;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 16px;
}

#inputFieldPossibilities {
  grid-area: 2/1/3/2;
  /* background-color: red; */
  min-height: 100px;
  width: 100%;
  border-radius: 10px;
}

.shortCutEditorStyleButton {
  width: 50%;
  font-size: 100%;
  background-color: var(--textArea-background-color2);
}

#styleEditor .shortCutEditorStyleButton:hover {
  background-color: var(--header-border-color);
}

#styleEditor .shortCutEditorStyleButton:active {
  background-color: var(--textArea-background-color);
}

#closeStyleEditor {
  color: white;
  background-color: var(--textArea-background-color2);
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 25px;
}

#closeStyleEditor:hover {
  color: var(--hover-btn-color2);
}

#closeStyleEditor:active {
  color: var(--click-btn-color);
}/*# sourceMappingURL=styleEditor.css.map */