/* app/javascript/editor/syntax-theme.css */
.code-block-wrapper {
  position: relative;
}
.code-block-lang-select {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  color: #6e6a86;
  font-size: 0.7rem;
  padding: 0.15rem 0.35rem;
  outline: none;
  cursor: pointer;
  z-index: 1;
}
.code-block-lang-select:hover,
.code-block-lang-select:focus {
  color: #e0def4;
  border-color: rgba(255, 255, 255, 0.2);
}
.code-block-lang-select option {
  background: #1a1a2e;
  color: #e0def4;
}
.tiptap pre {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
  font-family:
    "JetBrains Mono",
    "Fira Code",
    "SF Mono",
    monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
.tiptap pre code {
  background: none;
  padding: 0;
  color: #e0def4;
}
.tiptap pre .hljs-comment,
.tiptap pre .hljs-quote {
  color: #6e6a86;
  font-style: italic;
}
.tiptap pre .hljs-keyword,
.tiptap pre .hljs-selector-tag,
.tiptap pre .hljs-built_in {
  color: #c4a7e7;
}
.tiptap pre .hljs-string,
.tiptap pre .hljs-attr,
.tiptap pre .hljs-template-tag,
.tiptap pre .hljs-template-variable {
  color: #f6c177;
}
.tiptap pre .hljs-number,
.tiptap pre .hljs-literal,
.tiptap pre .hljs-type,
.tiptap pre .hljs-params {
  color: #ea9a97;
}
.tiptap pre .hljs-function,
.tiptap pre .hljs-title {
  color: #9ccfd8;
}
.tiptap pre .hljs-variable,
.tiptap pre .hljs-name,
.tiptap pre .hljs-tag {
  color: #eb6f92;
}
.tiptap pre .hljs-attribute {
  color: #c4a7e7;
}
.tiptap pre .hljs-symbol,
.tiptap pre .hljs-bullet,
.tiptap pre .hljs-link {
  color: #31748f;
}
.tiptap pre .hljs-meta {
  color: #6e6a86;
}
.tiptap pre .hljs-deletion {
  color: #eb6f92;
  background: rgba(235, 111, 146, 0.1);
}
.tiptap pre .hljs-addition {
  color: #9ccfd8;
  background: rgba(156, 207, 216, 0.1);
}
.tiptap pre .hljs-emphasis {
  font-style: italic;
}
.tiptap pre .hljs-strong {
  font-weight: bold;
}
.slash-command-popup {
  z-index: 50;
}
.slash-command-menu {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.25rem;
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.slash-command-empty {
  padding: 0.5rem 0.75rem;
  color: #6e6a86;
  font-size: 0.875rem;
}
.slash-command-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  color: #e0def4;
  cursor: pointer;
  text-align: left;
  font-size: 0.875rem;
}
.slash-command-item:hover,
.slash-command-item.is-selected {
  background: rgba(255, 255, 255, 0.08);
}
.slash-command-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.slash-command-text {
  display: flex;
  flex-direction: column;
}
.slash-command-title {
  font-weight: 500;
}
.slash-command-description {
  color: #6e6a86;
  font-size: 0.75rem;
}
/*# sourceMappingURL=/assets/editor-5753ef98.css.map */
