#editor-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--md-sys-color-outline-variant);
  min-width: 350px;
  background-color: #263238;
}

.pane-label {
  padding: 12px 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  background: var(--md-sys-color-surface-container);
  display: flex;
  align-items: center;
  gap: 8px;
}

.material-symbols-rounded {
  font-size: 18px;
}

.CodeMirror {
  flex: 1;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  line-height: 1.6;
  height: 100%;
}


.CodeMirror-scrollbar-filler {
  background: transparent;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--md-sys-color-outline-variant);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--md-sys-color-outline);
}
