/* [project]/src/components/editor.css [app-client] (css) */
.editor-container {
  border: 1px solid var(--border);
  font-family: var(--terminal-font);
  background: #00000080;
  border-radius: 4px;
  overflow: hidden;
}

.editor-toolbar {
  border-bottom: 1px solid var(--border);
  background: #111;
  flex-wrap: wrap;
  gap: .2rem;
  padding: .5rem;
  display: flex;
}

.editor-toolbar button {
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  padding: .4rem;
  transition: all .2s;
  display: flex;
}

.editor-toolbar button:hover {
  border-color: var(--primary);
  background: #34c7591a;
}

.editor-toolbar button.is-active {
  background: var(--primary);
  color: #000;
}

.editor-toolbar .divider {
  background: #333;
  width: 1px;
  margin: 0 .5rem;
}

.editor-content {
  color: #ccc;
  min-height: 400px;
  padding: 1rem;
  line-height: 1.6;
}

.editor-content:focus-within {
  outline: none;
}

.ProseMirror {
  outline: none;
  min-height: 380px;
}

.ProseMirror p {
  margin-bottom: 1rem;
}

.ProseMirror h1 {
  color: var(--accent);
  border-bottom: 1px solid #222;
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

.ProseMirror h2 {
  color: var(--primary);
  margin: 1.5rem 0 .8rem;
  font-size: 1.4rem;
}

.ProseMirror pre {
  color: #fff;
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: .5rem;
  margin: 1.5rem 0;
  padding: .75rem 1rem;
  font-family: JetBrainsMono NL, Courier New, Courier, monospace;
}

.ProseMirror pre code {
  color: inherit;
  background: none;
  padding: 0;
  font-size: .8rem;
}

.editor-image {
  border: 1px solid #222;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.hljs-comment, .hljs-quote {
  color: #616161;
}

.hljs-variable, .hljs-template-variable, .hljs-attribute, .hljs-tag, .hljs-name, .hljs-regexp, .hljs-link, .hljs-name, .hljs-selector-id, .hljs-selector-class {
  color: #f98181;
}

.hljs-number, .hljs-meta, .hljs-built_in, .hljs-builtin-name, .hljs-literal, .hljs-type, .hljs-params {
  color: #fdbc4c;
}

.hljs-string, .hljs-symbol, .hljs-bullet {
  color: #b5cea8;
}

.hljs-title, .hljs-section {
  color: #fafad2;
}

.hljs-keyword, .hljs-selector-tag {
  color: #569cd6;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: 700;
}

/*# sourceMappingURL=src_components_editor_9d370174.css.map*/