/* assets/index.css */
:root {
  --vscode-bg: #1e1e1e;
  --vscode-sidebar: #252526;
  --vscode-accent: #007acc;
  --vscode-button: #0e639c;
  --vscode-button-hover: #17b;
  --vscode-text: #d4d4d4;
  --vscode-border: #474747;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--vscode-bg);
  color: var(--vscode-text);
  overflow: hidden;
  height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

.layout-default {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#controls-row {
  background-color: var(--vscode-sidebar);
  display: flex;
  border-bottom: 1px solid var(--vscode-border);
  align-items:  center;
  gap: 12px;
  height: 36px;
  padding: 4px 16px;
}

.small-button {
  background-color: var(--vscode-button);
  color: #fff;
  cursor: pointer;
  display: flex;
  border: none;
  border-radius: 3px;
  align-items:  center;
  gap: 4px;
  height: 24px;
  padding: 4px 8px;
  font-size: 12px;
}

.small-button:hover {
  background-color: var(--vscode-button-hover);
}

.resolution-input {
  background-color: var(--vscode-bg);
  color: var(--vscode-text);
  border: 1px solid var(--vscode-border);
  appearance: textfield;
  border-radius: 3px;
  width: 70px;
  height: 24px;
  padding: 2px 24px 2px 6px;
  font-size: 12px;
}

.resolution-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.resolution-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.resolution-wrapper {
  position: relative;
  display: flex;
  align-items:  center;
}

.resolution-wrapper:after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 16px;
  height: 16px;
  right: 6px;
}

.width-wrapper:after {
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8H2M14 8L11 5M14 8L11 11M2 8L5 5M2 8L5 11' stroke='%23d4d4d4' stroke-width='1.5'/%3E%3C/svg%3E") center no-repeat;
}

.height-wrapper:after {
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2L8 14M8 2L5 5M8 2L11 5M8 14L5 11M8 14L11 11' stroke='%23d4d4d4' stroke-width='1.5'/%3E%3C/svg%3E") center no-repeat;
}

.resolution-stepper {
  position: absolute;
  display: flex;
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  width: 16px;
  height: 100%;
  right: 0;
}

.resolution-stepper button {
  background: var(--vscode-button);
  color: #fff;
  cursor: pointer;
  border: none;
  height: 50%;
  padding: 0;
  font-size: 8px;
}

.resolution-stepper button:hover {
  background: var(--vscode-button-hover);
}

.resolution-select {
  background-color: var(--vscode-bg);
  color: var(--vscode-text);
  border: 1px solid var(--vscode-border);
  border-radius: 3px;
  height: 24px;
  margin-right: 12px;
  padding: 2px 6px;
  font-size: 12px;
}

.resolution-label {
  display: flex;
  align-items:  center;
  gap: 4px;
  font-size: 12px;
}

.resolution-container {
  display: flex;
  align-items:  center;
  gap: 8px;
}

#top-bar {
  background-color: var(--vscode-sidebar);
  display: flex;
  border-bottom: 1px solid var(--vscode-border);
  align-items:  center;
  gap: 12px;
  height: 48px;
  padding: 8px 16px;
}

.content-area {
  display: flex;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.panel-container {
  display: flex;
  overflow: hidden;
  flex: 1;
  width: 100%;
}

.editor-container {
  display: flex;
  background-color: var(--vscode-bg);
  overflow: hidden;
  flex-direction: column;
  width: 50%;
  transition: width .3s;
}

.editor-header {
  background-color: var(--vscode-sidebar);
  display: flex;
  border-bottom: 1px solid var(--vscode-border);
  justify-content: space-between;
  align-items:  center;
  padding: 8px;
}

#editor-block {
  position: relative;
  flex: 1;
}

#editor {
  position: absolute;
  inset: 0;
}

.preview-container {
  display: flex;
  background-color: var(--vscode-bg);
  border-left: 1px solid var(--vscode-border);
  flex-direction: column;
  width: 50%;
  min-width: 32px;
  transition: width .3s;
}

.preview-header {
  background-color: var(--vscode-sidebar);
  display: flex;
  border-bottom: 1px solid var(--vscode-border);
  justify-content: space-between;
  align-items:  center;
  padding: 8px;
}

.preview-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#game {
  position: relative;
  background-color: #000;
  flex: 1;
  min-height: 0;
}

#gameCanvas {
  object-fit: contain;
  image-rendering: pixelated;
  width: 100%;
  height: 100%;
}

.console-container {
  display: flex;
  border-top: 1px solid var(--vscode-border);
  background-color: #1a1a1a;
  flex-direction: column;
  height: 200px;
  min-height: 120px;
  max-height: 400px;
}

#output-header {
  display: flex;
  cursor: ns-resize;
  user-select: none;
  background-color: #2d2d2d;
  justify-content: space-between;
  align-items:  center;
  padding: 6px 12px;
}

#output-header .title {
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #888;
  font-size: 11px;
  font-weight: 600;
}

#output-header .controls {
  display: flex;
  align-items:  center;
  gap: 8px;
}

#output-clear {
  color: #888;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: none;
  border: none;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 11px;
}

#output-clear:hover {
  color: #fff;
  background-color: #ffffff1a;
}

#output {
  overflow-y: auto;
  color: #d4d4d4;
  background-color: #1a1a1a;
  flex: 1;
  padding: 8px 0;
  font-family: JetBrains Mono, Consolas, Courier New, monospace;
  font-size: 12px;
  line-height: 1.5;
}

.error-message {
  color: #f14c4c;
  white-space: pre-wrap;
  background-color: #f14c4c1a;
  border-left: 2px solid #f14c4c;
  margin: 4px 0;
  padding: 6px 12px;
}

.stack-trace {
  color: #666;
  white-space: pre-wrap;
  border-left: 1px solid #333;
  margin: 4px 0 8px 32px;
  padding: 4px 12px;
  font-size: 11px;
}

.log-timestamp {
  color: #666;
  margin-right: 8px;
  font-size: 10px;
}

.log-message {
  border-left: 2px solid #0000;
  margin: 2px 0;
  padding: 4px 12px;
}

.log-message:hover {
  background-color: #ffffff08;
}

#output::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#output::-webkit-scrollbar-track {
  background: #1a1a1a;
}

#output::-webkit-scrollbar-thumb {
  background: #333;
  border: 2px solid #1a1a1a;
  border-radius: 5px;
}

#output::-webkit-scrollbar-thumb:hover {
  background: #444;
}

#output::-webkit-scrollbar-corner {
  background: #1a1a1a;
}

.splitter {
  background-color: var(--vscode-border);
  cursor: col-resize;
  width: 4px;
  transition: background-color .2s;
}

.splitter:hover {
  background-color: var(--vscode-accent);
}

.button {
  background-color: var(--vscode-button);
  color: #fff;
  cursor: pointer;
  display: flex;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  align-items:  center;
  gap: 8px;
  height: 28px;
  padding: 4px 12px;
  font-family: inherit;
  font-size: 13px;
}

.button:hover {
  background-color: var(--vscode-button-hover);
}

.icon-button {
  color: var(--vscode-text);
  cursor: pointer;
  display: flex;
  background: none;
  border: none;
  border-radius: 3px;
  justify-content: center;
  align-items:  center;
  padding: 4px;
}

.icon-button:hover {
  background-color: var(--vscode-button);
}

#sel-layout {
  background-color: var(--vscode-bg);
  color: var(--vscode-text);
  border: 1px solid var(--vscode-border);
  border-radius: 3px;
  height: 28px;
  padding: 4px 8px;
  font-family: inherit;
  font-size: 13px;
}

.editor-collapsed {
  flex-shrink: 0;
  width: 32px !important;
  min-width: 32px !important;
}

.editor-collapsed ~ .preview-container {
  flex: 1;
  width: calc(100% - 32px) !important;
}

.editor-collapsed #editor {
  display: none;
}

.editor-collapsed .editor-header {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: 100%;
  padding: 8px 4px;
  transform: rotate(180deg);
}

.editor-collapsed .icon-button svg {
  transform: rotate(180deg);
}

.preview-collapsed {
  width: 32px !important;
}

.preview-collapsed .preview-content {
  display: none;
}

.preview-collapsed .preview-header {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: 100%;
  padding: 8px 4px;
}

/* assets/fonts.css */
@font-face {
  font-family: Cascadia Code;
  src: url("./CascadiaMono-36z5hxmp.ttf");
}

/* node_modules/monaco-editor/esm/vs/editor/standalone/browser/standalone-tokens.css */
.monaco-editor {
  --monaco-monospace-font: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
  font-family: -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, HelveticaNeue-Light, system-ui, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Droid Sans, sans-serif;
}

.monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label, .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label, .monaco-editor.hc-black .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label, .monaco-editor.hc-light .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label {
  stroke-width: 1.2px;
}

.monaco-hover p {
  margin: 0;
}

.monaco-aria-container {
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  top: 0;
  position: absolute !important;
}

.monaco-editor, .monaco-diff-editor .synthetic-focus, .monaco-editor, .monaco-diff-editor [tabindex="0"]:focus, .monaco-editor, .monaco-diff-editor [tabindex="-1"]:focus, .monaco-editor, .monaco-diff-editor button:focus, .monaco-editor, .monaco-diff-editor input[type="button"]:focus, .monaco-editor, .monaco-diff-editor input[type="checkbox"]:focus, .monaco-editor, .monaco-diff-editor input[type="search"]:focus, .monaco-editor, .monaco-diff-editor input[type="text"]:focus, .monaco-editor, .monaco-diff-editor select:focus, .monaco-editor, .monaco-diff-editor textarea:focus {
  outline-width: 1px;
  outline-style: solid;
  outline-offset: -1px;
  outline-color: var(--vscode-focusBorder);
  opacity: 1;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/services/hoverService/hover.css */
.monaco-workbench .workbench-hover {
  position: relative;
  z-index: 40;
  overflow: hidden;
  background: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  color: var(--vscode-editorHoverWidget-foreground);
  box-shadow: 0 2px 8px var(--vscode-widget-shadow);
  border-radius: 3px;
  max-width: 700px;
  font-size: 13px;
  line-height: 19px;
}

.monaco-workbench .workbench-hover hr {
  border-bottom: none;
}

.monaco-workbench .workbench-hover:not(.skip-fade-in) {
  animation: fadein .1s linear;
}

.monaco-workbench .workbench-hover.compact {
  font-size: 12px;
}

.monaco-workbench .workbench-hover.compact .hover-contents {
  padding: 2px 8px;
}

.monaco-workbench .workbench-hover-container.locked .workbench-hover {
  outline: 1px solid var(--vscode-editorHoverWidget-border);
}

.monaco-workbench .workbench-hover-container.locked .workbench-hover:focus, .monaco-workbench .workbench-hover-lock:focus {
  outline: 1px solid var(--vscode-focusBorder);
}

.monaco-workbench .workbench-hover-container.locked .workbench-hover-lock:hover {
  background: var(--vscode-toolbar-hoverBackground);
}

.monaco-workbench .workbench-hover-pointer {
  position: absolute;
  z-index: 41;
  pointer-events: none;
}

.monaco-workbench .workbench-hover-pointer:after {
  content: "";
  position: absolute;
  background-color: var(--vscode-editorHoverWidget-background);
  border-right: 1px solid var(--vscode-editorHoverWidget-border);
  border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
  width: 5px;
  height: 5px;
}

.monaco-workbench .locked .workbench-hover-pointer:after {
  border-bottom-width: 2px;
  border-right-width: 2px;
  width: 4px;
  height: 4px;
}

.monaco-workbench .workbench-hover-pointer.left {
  left: -3px;
}

.monaco-workbench .workbench-hover-pointer.right {
  right: 3px;
}

.monaco-workbench .workbench-hover-pointer.top {
  top: -3px;
}

.monaco-workbench .workbench-hover-pointer.bottom {
  bottom: 3px;
}

.monaco-workbench .workbench-hover-pointer.left:after {
  transform: rotate(135deg);
}

.monaco-workbench .workbench-hover-pointer.right:after {
  transform: rotate(315deg);
}

.monaco-workbench .workbench-hover-pointer.top:after {
  transform: rotate(225deg);
}

.monaco-workbench .workbench-hover-pointer.bottom:after {
  transform: rotate(45deg);
}

.monaco-workbench .workbench-hover a {
  color: var(--vscode-textLink-foreground);
}

.monaco-workbench .workbench-hover a:focus {
  outline: 1px solid;
  outline-offset: -1px;
  text-decoration: underline;
  outline-color: var(--vscode-focusBorder);
}

.monaco-workbench .workbench-hover a:hover, .monaco-workbench .workbench-hover a:active {
  color: var(--vscode-textLink-activeForeground);
}

.monaco-workbench .workbench-hover code {
  background: var(--vscode-textCodeBlock-background);
}

.monaco-workbench .workbench-hover .hover-row .actions {
  background: var(--vscode-editorHoverWidget-statusBarBackground);
}

.monaco-workbench .workbench-hover.right-aligned {
  left: 1px;
}

.monaco-workbench .workbench-hover.right-aligned .hover-row.status-bar .actions {
  flex-direction: row-reverse;
}

.monaco-workbench .workbench-hover.right-aligned .hover-row.status-bar .actions .action-container {
  margin-left: 16px;
  margin-right: 0;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/scrollbar/media/scrollbars.css */
.monaco-scrollable-element > .scrollbar > .scra {
  cursor: pointer;
  font-size: 11px !important;
}

.monaco-scrollable-element > .visible {
  opacity: 1;
  z-index: 11;
  background: none;
  transition: opacity .1s linear;
}

.monaco-scrollable-element > .invisible {
  opacity: 0;
  pointer-events: none;
}

.monaco-scrollable-element > .invisible.fade {
  transition: opacity .8s linear;
}

.monaco-scrollable-element > .shadow {
  position: absolute;
  display: none;
}

.monaco-scrollable-element > .shadow.top {
  display: block;
  box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset;
  width: 100%;
  height: 3px;
  top: 0;
  left: 3px;
}

.monaco-scrollable-element > .shadow.left {
  display: block;
  box-shadow: var(--vscode-scrollbar-shadow) 6px 0 6px -6px inset;
  width: 3px;
  height: 100%;
  top: 3px;
  left: 0;
}

.monaco-scrollable-element > .shadow.top-left-corner {
  display: block;
  width: 3px;
  height: 3px;
  top: 0;
  left: 0;
}

.monaco-scrollable-element > .shadow.top.left {
  box-shadow: var(--vscode-scrollbar-shadow) 6px 0 6px -6px inset;
}

.monaco-scrollable-element > .scrollbar > .slider {
  background: var(--vscode-scrollbarSlider-background);
}

.monaco-scrollable-element > .scrollbar > .slider:hover {
  background: var(--vscode-scrollbarSlider-hoverBackground);
}

.monaco-scrollable-element > .scrollbar > .slider.active {
  background: var(--vscode-scrollbarSlider-activeBackground);
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/hover/hoverWidget.css */
.monaco-hover {
  cursor: default;
  position: absolute;
  overflow: hidden;
  user-select: text;
  -webkit-user-select: text;
  box-sizing: border-box;
  animation: fadein .1s linear;
  white-space: var(--vscode-hover-whiteSpace, normal);
  line-height: 1.5em;
}

.monaco-hover.hidden {
  display: none;
}

.monaco-hover a:hover:not(.disabled) {
  cursor: pointer;
}

.monaco-hover .hover-contents:not(.html-hover-contents) {
  padding: 4px 8px;
}

.monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) {
  max-width: var(--vscode-hover-maxWidth, 500px);
  word-wrap: break-word;
}

.monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) hr {
  min-width: 100%;
}

.monaco-hover p, .monaco-hover .code, .monaco-hover ul, .monaco-hover h1, .monaco-hover h2, .monaco-hover h3, .monaco-hover h4, .monaco-hover h5, .monaco-hover h6 {
  margin: 8px 0;
}

.monaco-hover h1, .monaco-hover h2, .monaco-hover h3, .monaco-hover h4, .monaco-hover h5, .monaco-hover h6 {
  line-height: 1.1;
}

.monaco-hover code {
  font-family: var(--monaco-monospace-font);
}

.monaco-hover hr {
  box-sizing: border-box;
  border-left: 0;
  border-right: 0;
  height: 1px;
  margin: 4px -8px -4px;
}

.monaco-hover p:first-child, .monaco-hover .code:first-child, .monaco-hover ul:first-child {
  margin-top: 0;
}

.monaco-hover p:last-child, .monaco-hover .code:last-child, .monaco-hover ul:last-child {
  margin-bottom: 0;
}

.monaco-hover ul, .monaco-hover ol {
  padding-left: 20px;
}

.monaco-hover li > p {
  margin-bottom: 0;
}

.monaco-hover li > ul {
  margin-top: 0;
}

.monaco-hover code {
  border-radius: 3px;
  padding: 0 .4em;
}

.monaco-hover .monaco-tokenized-source {
  white-space: var(--vscode-hover-sourceWhiteSpace, pre-wrap);
}

.monaco-hover .hover-row.status-bar {
  font-size: 12px;
  line-height: 22px;
}

.monaco-hover .hover-row.status-bar .info {
  padding: 0 8px;
  font-style: italic;
}

.monaco-hover .hover-row.status-bar .actions {
  display: flex;
  width: 100%;
  padding: 0 8px;
}

.monaco-hover .hover-row.status-bar .actions .action-container {
  cursor: pointer;
  margin-right: 16px;
}

.monaco-hover .hover-row.status-bar .actions .action-container .action .icon {
  padding-right: 4px;
}

.monaco-hover .hover-row.status-bar .actions .action-container a {
  color: var(--vscode-textLink-foreground);
  text-decoration: var(--text-link-decoration);
}

.monaco-hover .markdown-hover .hover-contents .codicon {
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
}

.monaco-hover .hover-contents a.code-link:hover, .monaco-hover .hover-contents a.code-link {
  color: inherit;
}

.monaco-hover .hover-contents a.code-link:before {
  content: "(";
}

.monaco-hover .hover-contents a.code-link:after {
  content: ")";
}

.monaco-hover .hover-contents a.code-link > span {
  text-decoration: underline;
  text-underline-position: under;
  color: var(--vscode-textLink-foreground);
  border-bottom: 1px solid #0000;
}

.monaco-hover .hover-contents a.code-link > span:hover {
  color: var(--vscode-textLink-activeForeground);
}

.monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) span {
  display: inline-block;
  margin-bottom: 4px;
}

.monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) span.codicon {
  margin-bottom: 2px;
}

.monaco-hover-content .action-container a {
  -webkit-user-select: none;
  user-select: none;
}

.monaco-hover-content .action-container.disabled {
  pointer-events: none;
  opacity: .4;
  cursor: default;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css */
.monaco-editor .rendered-markdown kbd {
  background-color: var(--vscode-keybindingLabel-background);
  color: var(--vscode-keybindingLabel-foreground);
  border-style: solid;
  border-width: 1px;
  border-color: var(--vscode-keybindingLabel-border);
  border-bottom-color: var(--vscode-keybindingLabel-bottomBorder);
  box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow);
  vertical-align: middle;
  border-radius: 3px;
  padding: 1px 3px;
}

.rendered-markdown li:has(input[type="checkbox"]) {
  list-style-type: none;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/aria/aria.css */
.monaco-aria-container {
  position: absolute;
  left: -999em;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/contextview/contextview.css */
.context-view {
  position: absolute;
}

.context-view.fixed {
  all: initial;
  position: fixed;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/list/list.css */
.monaco-list {
  position: relative;
  white-space: nowrap;
  width: 100%;
  height: 100%;
}

.monaco-list.mouse-support {
  user-select: none;
  -webkit-user-select: none;
}

.monaco-list > .monaco-scrollable-element {
  height: 100%;
}

.monaco-list-rows {
  position: relative;
  width: 100%;
  height: 100%;
}

.monaco-list.horizontal-scrolling .monaco-list-rows {
  width: auto;
  min-width: 100%;
}

.monaco-list-row {
  position: absolute;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.monaco-list.mouse-support .monaco-list-row {
  cursor: pointer;
  touch-action: none;
}

.monaco-list .monaco-scrollable-element > .scrollbar.vertical, .monaco-pane-view > .monaco-split-view2.vertical > .monaco-scrollable-element > .scrollbar.vertical {
  z-index: 14;
}

.monaco-list-row.scrolling {
  display: none !important;
}

.monaco-list.element-focused, .monaco-list.selection-single, .monaco-list.selection-multiple {
  outline: 0 !important;
}

.monaco-drag-image {
  display: inline-block;
  position: absolute;
  z-index: 1000;
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 12px;
}

.monaco-list-type-filter-message {
  position: absolute;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  opacity: .7;
  pointer-events: none;
  width: 100%;
  height: 100%;
  padding: 40px 1em 1em;
  top: 0;
  left: 0;
}

.monaco-list-type-filter-message:empty {
  display: none;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/selectBox/selectBoxCustom.css */
.monaco-select-box-dropdown-padding {
  --dropdown-padding-top: 1px;
  --dropdown-padding-bottom: 1px;
}

.hc-black .monaco-select-box-dropdown-padding, .hc-light .monaco-select-box-dropdown-padding {
  --dropdown-padding-top: 3px;
  --dropdown-padding-bottom: 4px;
}

.monaco-select-box-dropdown-container {
  display: none;
  box-sizing: border-box;
}

.monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown * {
  margin: 0;
}

.monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown a:focus {
  outline: 1px solid -webkit-focus-ring-color;
  outline-offset: -1px;
}

.monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown code {
  line-height: 15px;
  font-family: var(--monaco-monospace-font);
}

.monaco-select-box-dropdown-container.visible {
  display: flex;
  text-align: left;
  overflow: hidden;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  flex-direction: column;
  width: 1px;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
  padding-top: var(--dropdown-padding-top);
  padding-bottom: var(--dropdown-padding-bottom);
  overflow: hidden;
  box-sizing: border-box;
  flex: none;
  align-self:  flex-start;
  width: 100%;
  padding-left: 1px;
  padding-right: 1px;
}

.monaco-select-box-dropdown-container > .select-box-details-pane {
  padding: 5px;
}

.hc-black .monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
  padding-top: var(--dropdown-padding-top);
  padding-bottom: var(--dropdown-padding-bottom);
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row {
  cursor: pointer;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  float: left;
  padding-left: 3.5px;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-detail {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  float: left;
  opacity: .7;
  padding-left: 3.5px;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-decorator-right {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  float: right;
  padding-right: 10px;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  top: auto;
  left: -10000px;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control {
  opacity: 0;
  flex: auto;
  align-self:  flex-start;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control > .width-control-div {
  overflow: hidden;
  max-height: 0;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control > .width-control-div > .option-text-width-control {
  white-space: nowrap;
  padding-left: 4px;
  padding-right: 8px;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/selectBox/selectBox.css */
.monaco-select-box {
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
}

.monaco-select-box-dropdown-container {
  text-transform: none;
  font-size: 13px;
  font-weight: normal;
}

.monaco-action-bar .action-item.select-container {
  cursor: default;
}

.monaco-action-bar .action-item .monaco-select-box {
  cursor: pointer;
  min-width: 100px;
  min-height: 18px;
  padding: 2px 23px 2px 8px;
}

.mac .monaco-action-bar .action-item .monaco-select-box {
  border-radius: 5px;
  font-size: 11px;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/actionbar/actionbar.css */
.monaco-action-bar {
  white-space: nowrap;
  height: 100%;
}

.monaco-action-bar .actions-container {
  display: flex;
  align-items:  center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

.monaco-action-bar.vertical .actions-container {
  display: inline-block;
}

.monaco-action-bar .action-item {
  display: block;
  cursor: pointer;
  position: relative;
  justify-content: center;
  align-items:  center;
}

.monaco-action-bar .action-item.disabled {
  cursor: default;
}

.monaco-action-bar .action-item .icon, .monaco-action-bar .action-item .codicon {
  display: block;
}

.monaco-action-bar .action-item .codicon {
  display: flex;
  align-items:  center;
  width: 16px;
  height: 16px;
}

.monaco-action-bar .action-label {
  display: flex;
  border-radius: 5px;
  padding: 3px;
  font-size: 11px;
}

.monaco-action-bar .action-item.disabled .action-label, .monaco-action-bar .action-item.disabled .action-label:before, .monaco-action-bar .action-item.disabled .action-label:hover {
  color: var(--vscode-disabledForeground);
}

.monaco-action-bar.vertical {
  text-align: left;
}

.monaco-action-bar.vertical .action-item {
  display: block;
}

.monaco-action-bar.vertical .action-label.separator {
  display: block;
  border-bottom: 1px solid #bbb;
  margin-left: .8em;
  margin-right: .8em;
  padding-top: 1px;
}

.monaco-action-bar .action-item .action-label.separator {
  cursor: default;
  background-color: #bbb;
  width: 1px;
  min-width: 1px;
  height: 16px;
  padding: 0;
  margin: 5px 4px !important;
}

.secondary-actions .monaco-action-bar .action-label {
  margin-left: 6px;
}

.monaco-action-bar .action-item.select-container {
  overflow: hidden;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items:  center;
  min-width: 60px;
  max-width: 170px;
  margin-right: 10px;
}

.monaco-action-bar .action-item.action-dropdown-item {
  display: flex;
}

.monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator {
  display: flex;
  cursor: default;
  align-items:  center;
}

.monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator > div {
  width: 1px;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/dropdown/dropdown.css */
.monaco-dropdown {
  height: 100%;
  padding: 0;
}

.monaco-dropdown > .dropdown-label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items:  center;
  height: 100%;
}

.monaco-dropdown > .dropdown-label > .action-label.disabled {
  cursor: default;
}

.monaco-dropdown-with-primary {
  border-radius: 5px;
  flex-direction: row;
  display: flex !important;
}

.monaco-dropdown-with-primary > .action-container > .action-label {
  margin-right: 0;
}

.monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*="codicon-"] {
  margin-left: -3px;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  line-height: 16px;
}

.monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/* node_modules/monaco-editor/esm/vs/platform/actions/browser/menuEntryActionViewItem.css */
.monaco-action-bar .action-item.menu-entry .action-label.icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.monaco-action-bar .action-item.menu-entry.text-only .action-label {
  color: var(--vscode-descriptionForeground);
  overflow: hidden;
  border-radius: 2px;
}

.monaco-action-bar .action-item.menu-entry.text-only.use-comma:not(:last-of-type) .action-label:after {
  content: ", ";
}

.monaco-action-bar .action-item.menu-entry.text-only + .action-item:not(.text-only) > .monaco-dropdown .action-label {
  color: var(--vscode-descriptionForeground);
}

.monaco-dropdown-with-default {
  border-radius: 5px;
  flex-direction: row;
  display: flex !important;
}

.monaco-dropdown-with-default > .action-container > .action-label {
  margin-right: 0;
}

.monaco-dropdown-with-default > .action-container.menu-entry > .action-label.icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.monaco-dropdown-with-default:hover {
  background-color: var(--vscode-toolbar-hoverBackground);
}

.monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*="codicon-"] {
  margin-left: -3px;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  line-height: 16px;
}

.monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/* node_modules/monaco-editor/esm/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css */
.quick-input-widget {
  font-size: 13px;
}

.quick-input-widget .monaco-highlighted-label .highlight, .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0066bf;
}

.vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight, .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
  color: #9dddff;
}

.vs-dark .quick-input-widget .monaco-highlighted-label .highlight, .vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0097fb;
}

.hc-black .quick-input-widget .monaco-highlighted-label .highlight, .hc-black .quick-input-widget .monaco-highlighted-label .highlight {
  color: #f38518;
}

.hc-light .quick-input-widget .monaco-highlighted-label .highlight, .hc-light .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0f4a85;
}

.monaco-keybinding > .monaco-keybinding-key {
  color: #555;
  background-color: #ddd6;
  border: 1px solid #ccc6;
  border-bottom-color: #bbb6;
  box-shadow: inset 0 -1px #bbb6;
}

.hc-black .monaco-keybinding > .monaco-keybinding-key {
  box-shadow: none;
  color: #fff;
  background-color: #0000;
  border: 1px solid #6fc3df;
}

.hc-light .monaco-keybinding > .monaco-keybinding-key {
  box-shadow: none;
  color: #292929;
  background-color: #0000;
  border: 1px solid #0f4a85;
}

.vs-dark .monaco-keybinding > .monaco-keybinding-key {
  color: #ccc;
  background-color: #8080802b;
  border: 1px solid #3339;
  border-bottom-color: #4449;
  box-shadow: inset 0 -1px #4449;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/toggle/toggle.css */
.monaco-custom-toggle {
  float: left;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid #0000;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  padding: 1px;
}

.monaco-custom-toggle:hover {
  background-color: var(--vscode-inputOption-hoverBackground);
}

.hc-black .monaco-custom-toggle:hover, .hc-light .monaco-custom-toggle:hover {
  border: 1px dashed var(--vscode-focusBorder);
}

.hc-black .monaco-custom-toggle, .hc-light .monaco-custom-toggle, .hc-black .monaco-custom-toggle:hover, .hc-light .monaco-custom-toggle:hover {
  background: none;
}

.monaco-custom-toggle.monaco-checkbox {
  opacity: 1;
  border: 1px solid #0000;
  border-radius: 3px;
  width: 18px;
  height: 18px;
  margin-left: 0;
  margin-right: 9px;
  padding: 0;
  background-size: 16px !important;
}

.monaco-action-bar .checkbox-action-item {
  display: flex;
  border-radius: 2px;
  align-items:  center;
  padding-right: 2px;
}

.monaco-action-bar .checkbox-action-item:hover {
  background-color: var(--vscode-toolbar-hoverBackground);
}

.monaco-action-bar .checkbox-action-item > .monaco-custom-toggle.monaco-checkbox {
  margin-right: 4px;
}

.monaco-action-bar .checkbox-action-item > .checkbox-label {
  font-size: 12px;
}

.monaco-custom-toggle.monaco-checkbox:not(.checked):before {
  visibility: hidden;
}

/* node_modules/monaco-editor/esm/vs/platform/quickinput/browser/media/quickInput.css */
.quick-input-widget {
  position: absolute;
  z-index: 2550;
  -webkit-app-region: no-drag;
  border-radius: 6px;
  width: 600px;
  margin-left: -300px;
  left: 50%;
}

.quick-input-titlebar {
  display: flex;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  align-items:  center;
}

.quick-input-left-action-bar {
  display: flex;
  flex: 1;
  margin-left: 4px;
}

.quick-input-inline-action-bar {
  margin: 2px 0 0 5px;
}

.quick-input-title {
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 3px 0;
}

.quick-input-right-action-bar {
  display: flex;
  flex: 1;
  margin-right: 4px;
}

.quick-input-right-action-bar > .actions-container {
  justify-content: flex-end;
}

.quick-input-titlebar .monaco-action-bar .action-label.codicon {
  background-position: center;
  background-repeat: no-repeat;
  padding: 2px;
}

.quick-input-description {
  margin: 6px 6px 6px 11px;
}

.quick-input-header .quick-input-description {
  flex: 1;
  margin: 4px 2px;
}

.quick-input-header {
  display: flex;
  padding: 8px 6px 2px;
}

.quick-input-widget.hidden-input .quick-input-header {
  margin-bottom: 0;
  padding: 0;
}

.quick-input-and-message {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.quick-input-check-all {
  align-self:  center;
  margin: 0;
}

.quick-input-filter {
  display: flex;
  position: relative;
  flex-grow: 1;
}

.quick-input-box {
  flex-grow: 1;
}

.quick-input-widget.show-checkboxes .quick-input-box, .quick-input-widget.show-checkboxes .quick-input-message {
  margin-left: 5px;
}

.quick-input-visible-count {
  position: absolute;
  left: -10000px;
}

.quick-input-count {
  position: absolute;
  display: flex;
  align-self:  center;
  align-items:  center;
  right: 4px;
}

.quick-input-count .monaco-count-badge {
  vertical-align: middle;
  border-radius: 2px;
  min-height: auto;
  padding: 2px 4px;
  line-height: normal;
}

.quick-input-action {
  margin-left: 6px;
}

.quick-input-action .monaco-text-button {
  display: flex;
  align-items:  center;
  height: 25px;
  padding: 0 6px;
  font-size: 11px;
}

.quick-input-message {
  overflow-wrap: break-word;
  margin-top: -1px;
  padding: 5px;
}

.quick-input-message > .codicon {
  vertical-align: text-bottom;
  margin: 0 .2em;
}

.quick-input-message a {
  color: inherit;
}

.quick-input-progress.monaco-progress-container {
  position: relative;
}

.quick-input-list {
  line-height: 22px;
}

.quick-input-widget.hidden-input .quick-input-list {
  margin-top: 4px;
  padding-bottom: 4px;
}

.quick-input-list .monaco-list {
  overflow: hidden;
  max-height: 440px;
  padding-bottom: 5px;
}

.quick-input-list .monaco-scrollable-element {
  padding: 0 5px;
}

.quick-input-list .quick-input-list-entry {
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  padding: 0 6px;
}

.quick-input-list .quick-input-list-entry.quick-input-list-separator-border {
  border-top-style: solid;
  border-top-width: 1px;
}

.quick-input-list .monaco-list-row {
  border-radius: 3px;
}

.quick-input-list .monaco-list-row[data-index="0"] .quick-input-list-entry.quick-input-list-separator-border {
  border-top-style: none;
}

.quick-input-list .quick-input-list-label {
  overflow: hidden;
  display: flex;
  flex: 1;
  height: 100%;
}

.quick-input-list .quick-input-list-checkbox {
  align-self:  center;
  margin: 0;
}

.quick-input-list .quick-input-list-icon {
  display: flex;
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  justify-content: center;
  align-items:  center;
  width: 16px;
  height: 22px;
  padding-right: 6px;
}

.quick-input-list .quick-input-list-rows {
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  margin-left: 5px;
}

.quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-rows {
  margin-left: 10px;
}

.quick-input-widget .quick-input-list .quick-input-list-checkbox {
  display: none;
}

.quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-checkbox {
  display: inline;
}

.quick-input-list .quick-input-list-rows > .quick-input-list-row {
  display: flex;
  align-items:  center;
}

.quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label, .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label .monaco-icon-label-container > .monaco-icon-name-container {
  flex: 1;
}

.quick-input-list .quick-input-list-rows > .quick-input-list-row .codicon[class*="codicon-"] {
  vertical-align: text-bottom;
}

.quick-input-list .quick-input-list-rows .monaco-highlighted-label > span {
  opacity: 1;
}

.quick-input-list .quick-input-list-entry .quick-input-list-entry-keybinding {
  margin-right: 8px;
}

.quick-input-list .quick-input-list-label-meta {
  opacity: .7;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: normal;
}

.quick-input-list .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
  background-color: unset;
  font-weight: bold;
  color: var(--vscode-list-highlightForeground) !important;
}

.quick-input-list .monaco-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
  color: var(--vscode-list-focusHighlightForeground) !important;
}

.quick-input-list .quick-input-list-entry .quick-input-list-separator {
  margin-right: 4px;
}

.quick-input-list .quick-input-list-entry-action-bar {
  display: flex;
  overflow: visible;
  flex: 0;
}

.quick-input-list .quick-input-list-entry-action-bar .action-label {
  display: none;
}

.quick-input-list .quick-input-list-entry-action-bar .action-label.codicon {
  margin-right: 4px;
  padding: 2px;
}

.quick-input-list .quick-input-list-entry-action-bar {
  margin-top: 1px;
}

.quick-input-list .quick-input-list-entry-action-bar {
  margin-right: 4px;
}

.quick-input-list .quick-input-list-entry .quick-input-list-entry-action-bar .action-label.always-visible, .quick-input-list .quick-input-list-entry:hover .quick-input-list-entry-action-bar .action-label, .quick-input-list .quick-input-list-entry.focus-inside .quick-input-list-entry-action-bar .action-label, .quick-input-list .monaco-list-row.focused .quick-input-list-entry-action-bar .action-label, .quick-input-list .monaco-list-row.passive-focused .quick-input-list-entry-action-bar .action-label {
  display: flex;
}

.quick-input-list .monaco-list-row.focused .monaco-keybinding-key, .quick-input-list .monaco-list-row.focused .quick-input-list-entry .quick-input-list-separator {
  color: inherit;
}

.quick-input-list .monaco-list-row.focused .monaco-keybinding-key {
  background: none;
}

.quick-input-list .quick-input-list-separator-as-item {
  padding: 4px 6px;
  font-size: 12px;
}

.quick-input-list .quick-input-list-separator-as-item .label-name {
  font-weight: 600;
}

.quick-input-list .quick-input-list-separator-as-item .label-description {
  opacity: 1 !important;
}

.quick-input-list .monaco-tree-sticky-row .quick-input-list-entry.quick-input-list-separator-as-item.quick-input-list-separator-border {
  border-top-style: none;
}

.quick-input-list .monaco-tree-sticky-row {
  padding: 0 5px;
}

.quick-input-list .monaco-tl-twistie {
  display: none !important;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/button/button.css */
.monaco-text-button {
  box-sizing: border-box;
  display: flex;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--vscode-button-border, transparent);
  border-radius: 2px;
  justify-content: center;
  align-items:  center;
  width: 100%;
  padding: 4px;
  line-height: 18px;
}

.monaco-text-button:focus {
  outline-offset: 2px !important;
}

.monaco-text-button:hover {
  text-decoration: none !important;
}

.monaco-button.disabled:focus, .monaco-button.disabled {
  cursor: default;
  opacity: .4 !important;
}

.monaco-text-button .codicon {
  margin: 0 .2em;
  color: inherit !important;
}

.monaco-text-button.monaco-text-button-with-short-label {
  overflow: hidden;
  flex-flow: wrap;
  height: 28px;
  padding: 0 4px;
}

.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label {
  flex-basis: 100%;
}

.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
  overflow: hidden;
  flex-grow: 1;
  width: 0;
}

.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label, .monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
  display: flex;
  font-weight: normal;
  font-style: inherit;
  justify-content: center;
  align-items:  center;
  padding: 4px 0;
}

.monaco-button-dropdown {
  display: flex;
  cursor: pointer;
}

.monaco-button-dropdown.disabled {
  cursor: default;
}

.monaco-button-dropdown > .monaco-button:focus {
  outline-offset: -1px !important;
}

.monaco-button-dropdown.disabled > .monaco-button.disabled, .monaco-button-dropdown.disabled > .monaco-button.disabled:focus, .monaco-button-dropdown.disabled > .monaco-button-dropdown-separator {
  opacity: .4 !important;
}

.monaco-button-dropdown > .monaco-button.monaco-text-button {
  border-right-width: 0 !important;
}

.monaco-button-dropdown .monaco-button-dropdown-separator {
  cursor: default;
  padding: 4px 0;
}

.monaco-button-dropdown .monaco-button-dropdown-separator > div {
  width: 1px;
  height: 100%;
}

.monaco-button-dropdown > .monaco-button.monaco-dropdown-button {
  border: 1px solid var(--vscode-button-border, transparent);
  display: flex;
  border-radius: 0 2px 2px 0;
  align-items:  center;
  border-left-width: 0 !important;
}

.monaco-button-dropdown > .monaco-button.monaco-text-button {
  border-radius: 2px 0 0 2px;
}

.monaco-description-button {
  display: flex;
  flex-direction: column;
  align-items:  center;
  margin: 4px 5px;
}

.monaco-description-button .monaco-button-description {
  padding: 4px 20px;
  font-size: 11px;
  font-style: italic;
}

.monaco-description-button .monaco-button-label, .monaco-description-button .monaco-button-description {
  display: flex;
  justify-content: center;
  align-items:  center;
}

.monaco-description-button .monaco-button-label > .codicon, .monaco-description-button .monaco-button-description > .codicon {
  margin: 0 .2em;
  color: inherit !important;
}

.monaco-button.default-colors, .monaco-button-dropdown.default-colors > .monaco-button {
  color: var(--vscode-button-foreground);
  background-color: var(--vscode-button-background);
}

.monaco-button.default-colors:hover, .monaco-button-dropdown.default-colors > .monaco-button:hover {
  background-color: var(--vscode-button-hoverBackground);
}

.monaco-button.default-colors.secondary, .monaco-button-dropdown.default-colors > .monaco-button.secondary {
  color: var(--vscode-button-secondaryForeground);
  background-color: var(--vscode-button-secondaryBackground);
}

.monaco-button.default-colors.secondary:hover, .monaco-button-dropdown.default-colors > .monaco-button.secondary:hover {
  background-color: var(--vscode-button-secondaryHoverBackground);
}

.monaco-button-dropdown.default-colors .monaco-button-dropdown-separator {
  background-color: var(--vscode-button-background);
  border-top: 1px solid var(--vscode-button-border);
  border-bottom: 1px solid var(--vscode-button-border);
}

.monaco-button-dropdown.default-colors .monaco-button.secondary + .monaco-button-dropdown-separator {
  background-color: var(--vscode-button-secondaryBackground);
}

.monaco-button-dropdown.default-colors .monaco-button-dropdown-separator > div {
  background-color: var(--vscode-button-separator);
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/countBadge/countBadge.css */
.monaco-count-badge {
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 11px;
  min-width: 18px;
  min-height: 18px;
  padding: 3px 6px;
  font-size: 11px;
  font-weight: normal;
  line-height: 11px;
}

.monaco-count-badge.long {
  border-radius: 2px;
  min-height: auto;
  padding: 2px 3px;
  line-height: normal;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/progressbar/progressbar.css */
.monaco-progress-container {
  overflow: hidden;
  width: 100%;
  height: 2px;
}

.monaco-progress-container .progress-bit {
  position: absolute;
  display: none;
  width: 2%;
  height: 2px;
  left: 0;
}

.monaco-progress-container.active .progress-bit {
  display: inherit;
}

.monaco-progress-container.discrete .progress-bit {
  transition: width .1s linear;
  left: 0;
}

.monaco-progress-container.discrete.done .progress-bit {
  width: 100%;
}

.monaco-progress-container.infinite .progress-bit {
  animation-name: progress;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform: translate3d(0, 0, 0);
}

.monaco-progress-container.infinite.infinite-long-running .progress-bit {
  animation-timing-function: steps(100);
}

@keyframes progress {
  from {
    transform: translateX(0%)scaleX(1);
  }

  50% {
    transform: translateX(2500%)scaleX(3);
  }

  to {
    transform: translateX(4900%)scaleX(1);
  }
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/inputbox/inputBox.css */
.monaco-inputbox {
  position: relative;
  display: block;
  box-sizing: border-box;
  font-size: inherit;
  border-radius: 2px;
  padding: 0;
}

.monaco-inputbox > .ibwrapper > .input, .monaco-inputbox > .ibwrapper > .mirror {
  padding: 4px 6px;
}

.monaco-inputbox > .ibwrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.monaco-inputbox > .ibwrapper > .input {
  display: inline-block;
  box-sizing: border-box;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  resize: none;
  color: inherit;
  border: none;
  width: 100%;
  height: 100%;
}

.monaco-inputbox > .ibwrapper > input {
  text-overflow: ellipsis;
}

.monaco-inputbox > .ibwrapper > textarea.input {
  display: block;
  scrollbar-width: none;
  outline: none;
}

.monaco-inputbox > .ibwrapper > textarea.input::-webkit-scrollbar {
  display: none;
}

.monaco-inputbox > .ibwrapper > textarea.input.empty {
  white-space: nowrap;
}

.monaco-inputbox > .ibwrapper > .mirror {
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  white-space: pre-wrap;
  visibility: hidden;
  word-wrap: break-word;
  width: 100%;
  top: 0;
  left: 0;
}

.monaco-inputbox-container {
  text-align: right;
}

.monaco-inputbox-container .monaco-inputbox-message {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  box-sizing: border-box;
  word-wrap: break-word;
  width: 100%;
  margin-top: -1px;
  padding: .4em;
  font-size: 12px;
  line-height: 17px;
}

.monaco-inputbox .monaco-action-bar {
  position: absolute;
  top: 4px;
  right: 2px;
}

.monaco-inputbox .monaco-action-bar .action-item {
  margin-left: 2px;
}

.monaco-inputbox .monaco-action-bar .action-item .codicon {
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/findinput/findInput.css */
.monaco-findInput {
  position: relative;
}

.monaco-findInput .monaco-inputbox {
  width: 100%;
  font-size: 13px;
}

.monaco-findInput > .controls {
  position: absolute;
  top: 3px;
  right: 2px;
}

.vs .monaco-findInput.disabled {
  background-color: #e1e1e1;
}

.vs-dark .monaco-findInput.disabled {
  background-color: #333;
}

.monaco-findInput.highlight-0 .controls, .hc-light .monaco-findInput.highlight-0 .controls {
  animation: monaco-findInput-highlight-0 .1s linear 0s;
}

.monaco-findInput.highlight-1 .controls, .hc-light .monaco-findInput.highlight-1 .controls {
  animation: monaco-findInput-highlight-1 .1s linear 0s;
}

.hc-black .monaco-findInput.highlight-0 .controls, .vs-dark .monaco-findInput.highlight-0 .controls {
  animation: monaco-findInput-highlight-dark-0 .1s linear 0s;
}

.hc-black .monaco-findInput.highlight-1 .controls, .vs-dark .monaco-findInput.highlight-1 .controls {
  animation: monaco-findInput-highlight-dark-1 .1s linear 0s;
}

@keyframes monaco-findInput-highlight-0 {
  0% {
    background: #fdff00cc;
  }

  100% {
    background: none;
  }
}

@keyframes monaco-findInput-highlight-1 {
  0% {
    background: #fdff00cc;
  }

  99% {
    background: none;
  }
}

@keyframes monaco-findInput-highlight-dark-0 {
  0% {
    background: #ffffff70;
  }

  100% {
    background: none;
  }
}

@keyframes monaco-findInput-highlight-dark-1 {
  0% {
    background: #ffffff70;
  }

  99% {
    background: none;
  }
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/sash/sash.css */
:root {
  --vscode-sash-size: 4px;
  --vscode-sash-hover-size: 4px;
}

.monaco-sash {
  position: absolute;
  z-index: 35;
  touch-action: none;
}

.monaco-sash.disabled {
  pointer-events: none;
}

.monaco-sash.mac.vertical {
  cursor: col-resize;
}

.monaco-sash.vertical.minimum {
  cursor: e-resize;
}

.monaco-sash.vertical.maximum {
  cursor: w-resize;
}

.monaco-sash.mac.horizontal {
  cursor: row-resize;
}

.monaco-sash.horizontal.minimum {
  cursor: s-resize;
}

.monaco-sash.horizontal.maximum {
  cursor: n-resize;
}

.monaco-sash.disabled {
  cursor: default !important;
  pointer-events: none !important;
}

.monaco-sash.vertical {
  cursor: ew-resize;
  width: var(--vscode-sash-size);
  height: 100%;
  top: 0;
}

.monaco-sash.horizontal {
  cursor: ns-resize;
  height: var(--vscode-sash-size);
  width: 100%;
  left: 0;
}

.monaco-sash:not(.disabled) > .orthogonal-drag-handle {
  content: " ";
  height: calc(var(--vscode-sash-size) * 2);
  width: calc(var(--vscode-sash-size) * 2);
  z-index: 100;
  display: block;
  cursor: all-scroll;
  position: absolute;
}

.monaco-sash.horizontal.orthogonal-edge-north:not(.disabled) > .orthogonal-drag-handle.start, .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled) > .orthogonal-drag-handle.end {
  cursor: nwse-resize;
}

.monaco-sash.horizontal.orthogonal-edge-north:not(.disabled) > .orthogonal-drag-handle.end, .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled) > .orthogonal-drag-handle.start {
  cursor: nesw-resize;
}

.monaco-sash.vertical > .orthogonal-drag-handle.start {
  left: calc(var(--vscode-sash-size) * -.5);
  top: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash.vertical > .orthogonal-drag-handle.end {
  left: calc(var(--vscode-sash-size) * -.5);
  bottom: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash.horizontal > .orthogonal-drag-handle.start {
  top: calc(var(--vscode-sash-size) * -.5);
  left: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash.horizontal > .orthogonal-drag-handle.end {
  top: calc(var(--vscode-sash-size) * -.5);
  right: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash:before {
  content: "";
  pointer-events: none;
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
}

.monaco-workbench:not(.reduce-motion) .monaco-sash:before {
  transition: background-color .1s ease-out;
}

.monaco-sash.hover:before, .monaco-sash.active:before {
  background: var(--vscode-sash-hoverBorder);
}

.monaco-sash.vertical:before {
  width: var(--vscode-sash-hover-size);
  left: calc(50% - (var(--vscode-sash-hover-size) / 2));
}

.monaco-sash.horizontal:before {
  height: var(--vscode-sash-hover-size);
  top: calc(50% - (var(--vscode-sash-hover-size) / 2));
}

.pointer-events-disabled {
  pointer-events: none !important;
}

.monaco-sash.debug {
  background: #0ff;
}

.monaco-sash.debug.disabled {
  background: #0ff3;
}

.monaco-sash.debug:not(.disabled) > .orthogonal-drag-handle {
  background: red;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/splitview/splitview.css */
.monaco-split-view2 {
  position: relative;
  width: 100%;
  height: 100%;
}

.monaco-split-view2 > .sash-container {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.monaco-split-view2 > .sash-container > .monaco-sash {
  pointer-events: initial;
}

.monaco-split-view2 > .monaco-scrollable-element {
  width: 100%;
  height: 100%;
}

.monaco-split-view2 > .monaco-scrollable-element > .split-view-container {
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 100%;
}

.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view {
  white-space: initial;
  position: absolute;
}

.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view:not(.visible) {
  display: none;
}

.monaco-split-view2.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view {
  width: 100%;
}

.monaco-split-view2.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view {
  height: 100%;
}

.monaco-split-view2.separator-border > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
  content: " ";
  position: absolute;
  z-index: 5;
  pointer-events: none;
  background-color: var(--separator-border);
  top: 0;
  left: 0;
}

.monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
  width: 1px;
  height: 100%;
}

.monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
  width: 100%;
  height: 1px;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/table/table.css */
.monaco-table {
  display: flex;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.monaco-table > .monaco-split-view2 {
  border-bottom: 1px solid #0000;
}

.monaco-table > .monaco-list {
  flex: 1;
}

.monaco-table-tr {
  display: flex;
  height: 100%;
}

.monaco-table-th {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 100%;
  font-weight: bold;
}

.monaco-table-th, .monaco-table-td {
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

.monaco-table > .monaco-split-view2 .monaco-sash.vertical:before {
  content: "";
  position: absolute;
  left: calc(var(--vscode-sash-size) / 2);
  border-left: 1px solid #0000;
  width: 0;
}

.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2, .monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2 .monaco-sash.vertical:before {
  transition: border-color .2s ease-out;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/tree/media/tree.css */
.monaco-tl-row {
  display: flex;
  position: relative;
  align-items:  center;
  height: 100%;
}

.monaco-tl-row.disabled {
  cursor: default;
}

.monaco-tl-indent {
  position: absolute;
  pointer-events: none;
  height: 100%;
  top: 0;
  left: 16px;
}

.hide-arrows .monaco-tl-indent {
  left: 12px;
}

.monaco-tl-indent > .indent-guide {
  display: inline-block;
  box-sizing: border-box;
  border-left: 1px solid #0000;
  height: 100%;
}

.monaco-workbench:not(.reduce-motion) .monaco-tl-indent > .indent-guide {
  transition: border-color .1s linear;
}

.monaco-tl-twistie, .monaco-tl-contents {
  height: 100%;
}

.monaco-tl-twistie {
  text-align: right;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 16px;
  padding-right: 6px;
  font-size: 10px;
  transform: translateX(3px);
  display: flex !important;
}

.monaco-tl-contents {
  overflow: hidden;
  flex: 1;
}

.monaco-tl-twistie:before {
  border-radius: 20px;
}

.monaco-tl-twistie.collapsed:before {
  transform: rotate(-90deg);
}

.monaco-tl-twistie.codicon-tree-item-loading:before {
  animation: codicon-spin 1.25s steps(30) infinite;
}

.monaco-tree-type-filter {
  position: absolute;
  display: flex;
  z-index: 100;
  border: 1px solid var(--vscode-widget-border);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  max-width: 200px;
  margin: 0 6px;
  padding: 3px;
  top: 0;
}

.monaco-workbench:not(.reduce-motion) .monaco-tree-type-filter {
  transition: top .3s;
}

.monaco-tree-type-filter.disabled {
  top: -40px !important;
}

.monaco-tree-type-filter-grab {
  cursor: grab;
  justify-content: center;
  align-items:  center;
  margin-right: 2px;
  display: flex !important;
}

.monaco-tree-type-filter-grab.grabbing {
  cursor: grabbing;
}

.monaco-tree-type-filter-input {
  flex: 1;
}

.monaco-tree-type-filter-input .monaco-inputbox {
  height: 23px;
}

.monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .input, .monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .mirror {
  padding: 2px 4px;
}

.monaco-tree-type-filter-input .monaco-findInput > .controls {
  top: 2px;
}

.monaco-tree-type-filter-actionbar {
  margin-left: 4px;
}

.monaco-tree-type-filter-actionbar .monaco-action-bar .action-label {
  padding: 2px;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container {
  position: absolute;
  z-index: 13;
  background-color: var(--vscode-sideBar-background);
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row.monaco-list-row {
  position: absolute;
  overflow: hidden;
  background-color: var(--vscode-sideBar-background);
  width: 100%;
  opacity: 1 !important;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row:hover {
  cursor: pointer;
  background-color: var(--vscode-list-hoverBackground) !important;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty, .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty .monaco-tree-sticky-container-shadow {
  display: none;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-container-shadow {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -3px;
  left: 0;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container[tabindex="0"]:focus {
  outline: none;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/iconLabel/iconlabel.css */
.monaco-icon-label {
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
}

.monaco-icon-label:before {
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: top;
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  flex-shrink: 0;
  width: 16px;
  height: 22px;
  padding-right: 6px;
  line-height: inherit !important;
}

.monaco-icon-label-iconpath {
  display: flex;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding-left: 2px;
}

.monaco-icon-label-container.disabled {
  color: var(--vscode-disabledForeground);
}

.monaco-icon-label > .monaco-icon-label-container {
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
  color: inherit;
  white-space: pre;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name > .label-separator {
  opacity: .5;
  margin: 0 2px;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-suffix-container > .label-suffix {
  opacity: .7;
  white-space: pre;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  opacity: .7;
  white-space: pre;
  margin-left: .5em;
  font-size: .9em;
}

.monaco-icon-label.nowrap > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  white-space: nowrap;
}

.vs .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  opacity: .95;
}

.monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-name-container > .label-name, .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  font-style: italic;
}

.monaco-icon-label.deprecated {
  text-decoration: line-through;
  opacity: .66;
}

.monaco-icon-label.italic:after {
  font-style: italic;
}

.monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-name-container > .label-name, .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  text-decoration: line-through;
}

.monaco-icon-label:after {
  opacity: .75;
  text-align: center;
  margin: auto 16px 0 5px;
  font-size: 90%;
  font-weight: 600;
}

.monaco-list:focus .selected .monaco-icon-label, .monaco-list:focus .selected .monaco-icon-label:after {
  color: inherit !important;
}

.monaco-list-row.focused.selected .label-description, .monaco-list-row.selected .label-description {
  opacity: .8;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/keybindingLabel/keybindingLabel.css */
.monaco-keybinding {
  display: flex;
  align-items:  center;
  line-height: 10px;
}

.monaco-keybinding > .monaco-keybinding-key {
  display: inline-block;
  vertical-align: middle;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  margin: 0 2px;
  padding: 3px 5px;
  font-size: 11px;
}

.monaco-keybinding > .monaco-keybinding-key:first-child {
  margin-left: 0;
}

.monaco-keybinding > .monaco-keybinding-key:last-child {
  margin-right: 0;
}

.monaco-keybinding > .monaco-keybinding-key-separator {
  display: inline-block;
}

.monaco-keybinding > .monaco-keybinding-key-chord-separator {
  width: 6px;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/widget/codeEditor/editor.css */
::-ms-clear {
  display: none;
}

.monaco-editor .editor-widget input {
  color: inherit;
}

.monaco-editor {
  position: relative;
  overflow: visible;
  -webkit-text-size-adjust: 100%;
  color: var(--vscode-editor-foreground);
  background-color: var(--vscode-editor-background);
  overflow-wrap: initial;
}

.monaco-editor-background {
  background-color: var(--vscode-editor-background);
}

.monaco-editor .rangeHighlight {
  background-color: var(--vscode-editor-rangeHighlightBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-rangeHighlightBorder);
}

.monaco-editor.hc-black .rangeHighlight, .monaco-editor.hc-light .rangeHighlight {
  border-style: dotted;
}

.monaco-editor .symbolHighlight {
  background-color: var(--vscode-editor-symbolHighlightBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-symbolHighlightBorder);
}

.monaco-editor.hc-black .symbolHighlight, .monaco-editor.hc-light .symbolHighlight {
  border-style: dotted;
}

.monaco-editor .overflow-guard {
  position: relative;
  overflow: hidden;
}

.monaco-editor .view-overlays {
  position: absolute;
  top: 0;
}

.monaco-editor .view-overlays > div, .monaco-editor .margin-view-overlays > div {
  position: absolute;
  width: 100%;
}

.monaco-editor .squiggly-error {
  border-bottom: 4px double var(--vscode-editorError-border);
}

.monaco-editor .squiggly-error:before {
  display: block;
  content: "";
  background: var(--vscode-editorError-background);
  width: 100%;
  height: 100%;
}

.monaco-editor .squiggly-warning {
  border-bottom: 4px double var(--vscode-editorWarning-border);
}

.monaco-editor .squiggly-warning:before {
  display: block;
  content: "";
  background: var(--vscode-editorWarning-background);
  width: 100%;
  height: 100%;
}

.monaco-editor .squiggly-info {
  border-bottom: 4px double var(--vscode-editorInfo-border);
}

.monaco-editor .squiggly-info:before {
  display: block;
  content: "";
  background: var(--vscode-editorInfo-background);
  width: 100%;
  height: 100%;
}

.monaco-editor .squiggly-hint {
  border-bottom: 2px dotted var(--vscode-editorHint-border);
}

.monaco-editor.showUnused .squiggly-unnecessary {
  border-bottom: 2px dashed var(--vscode-editorUnnecessaryCode-border);
}

.monaco-editor.showDeprecated .squiggly-inline-deprecated {
  text-decoration: line-through;
  text-decoration-color: var(--vscode-editor-foreground, inherit);
}

/* node_modules/monaco-editor/esm/vs/editor/browser/controller/textAreaHandler.css */
.monaco-editor .inputarea {
  position: absolute;
  resize: none;
  overflow: hidden;
  color: #0000;
  z-index: -10;
  background-color: #0000;
  border: none;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  outline: none !important;
}

.monaco-editor .inputarea.ime-input {
  z-index: 10;
  caret-color: var(--vscode-editorCursor-foreground);
  color: var(--vscode-editor-foreground);
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css */
.monaco-editor .margin-view-overlays .line-numbers {
  font-variant-numeric: tabular-nums;
  position: absolute;
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: default;
  bottom: 0;
}

.monaco-editor .relative-current-line-number {
  text-align: left;
  display: inline-block;
  width: 100%;
}

.monaco-editor .margin-view-overlays .line-numbers.lh-odd {
  margin-top: 1px;
}

.monaco-editor .line-numbers {
  color: var(--vscode-editorLineNumber-foreground);
}

.monaco-editor .line-numbers.active-line-number {
  color: var(--vscode-editorLineNumber-activeForeground);
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/margin/margin.css */
.monaco-editor .margin {
  background-color: var(--vscode-editorGutter-background);
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/mouseCursor/mouseCursor.css */
.monaco-mouse-cursor-text {
  cursor: text;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css */
.monaco-editor .blockDecorations-container {
  position: absolute;
  pointer-events: none;
  top: 0;
}

.monaco-editor .blockDecorations-block {
  position: absolute;
  box-sizing: border-box;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css */
.monaco-editor .view-overlays .current-line, .monaco-editor .margin-view-overlays .current-line {
  display: block;
  position: absolute;
  box-sizing: border-box;
  height: 100%;
  top: 0;
  left: 0;
}

.monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both {
  border-right: 0;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/decorations/decorations.css */
.monaco-editor .lines-content .cdr {
  position: absolute;
  height: 100%;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css */
.monaco-editor .glyph-margin {
  position: absolute;
  top: 0;
}

.monaco-editor .glyph-margin-widgets .cgmr {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items:  center;
}

.monaco-editor .glyph-margin-widgets .cgmr.codicon-modifier-spin:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/indentGuides/indentGuides.css */
.monaco-editor .lines-content .core-guide {
  position: absolute;
  box-sizing: border-box;
  height: 100%;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/lines/viewLines.css */
.mtkcontrol {
  color: #fff !important;
  background: #960000 !important;
}

.mtkoverflow {
  background-color: var(--vscode-button-background, var(--vscode-editor-background));
  color: var(--vscode-button-foreground, var(--vscode-editor-foreground));
  border-style: solid;
  border-width: 1px;
  border-color: var(--vscode-contrastBorder);
  cursor: pointer;
  border-radius: 2px;
  padding: 4px;
}

.mtkoverflow:hover {
  background-color: var(--vscode-button-hoverBackground);
}

.monaco-editor.no-user-select .lines-content, .monaco-editor.no-user-select .view-line, .monaco-editor.no-user-select .view-lines {
  user-select: none;
  -webkit-user-select: none;
}

.monaco-editor.mac .lines-content:hover, .monaco-editor.mac .view-line:hover, .monaco-editor.mac .view-lines:hover {
  user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}

.monaco-editor.enable-user-select {
  user-select: initial;
  -webkit-user-select: initial;
}

.monaco-editor .view-lines {
  white-space: nowrap;
}

.monaco-editor .view-line {
  position: absolute;
  width: 100%;
}

.monaco-editor .lines-content > .view-lines > .view-line > span {
  position: absolute;
  top: 0;
  bottom: 0;
}

.monaco-editor .mtkw {
  color: var(--vscode-editorWhitespace-foreground) !important;
}

.monaco-editor .mtkz {
  display: inline-block;
  color: var(--vscode-editorWhitespace-foreground) !important;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css */
.monaco-editor .lines-decorations {
  position: absolute;
  background: #fff;
  top: 0;
}

.monaco-editor .margin-view-overlays .cldr {
  position: absolute;
  height: 100%;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css */
.monaco-editor .margin-view-overlays .cmdr {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/minimap/minimap.css */
.monaco-editor .minimap.slider-mouseover .minimap-slider {
  opacity: 0;
  transition: opacity .1s linear;
}

.monaco-editor .minimap.slider-mouseover:hover .minimap-slider, .monaco-editor .minimap.slider-mouseover .minimap-slider.active {
  opacity: 1;
}

.monaco-editor .minimap-slider .minimap-slider-horizontal {
  background: var(--vscode-minimapSlider-background);
}

.monaco-editor .minimap-slider:hover .minimap-slider-horizontal {
  background: var(--vscode-minimapSlider-hoverBackground);
}

.monaco-editor .minimap-slider.active .minimap-slider-horizontal {
  background: var(--vscode-minimapSlider-activeBackground);
}

.monaco-editor .minimap-shadow-visible {
  box-shadow: var(--vscode-scrollbar-shadow) -6px 0 6px -6px inset;
}

.monaco-editor .minimap-shadow-hidden {
  position: absolute;
  width: 0;
}

.monaco-editor .minimap-shadow-visible {
  position: absolute;
  width: 6px;
  left: -6px;
}

.monaco-editor.no-minimap-shadow .minimap-shadow-visible {
  position: absolute;
  width: 1px;
  left: -1px;
}

.minimap.autohide {
  opacity: 0;
  transition: opacity .5s;
}

.minimap.autohide:hover {
  opacity: 1;
}

.monaco-editor .minimap {
  z-index: 5;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css */
.monaco-editor .overlayWidgets {
  position: absolute;
  top: 0;
  left: 0;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/rulers/rulers.css */
.monaco-editor .view-ruler {
  position: absolute;
  box-shadow: 1px 0 0 0 var(--vscode-editorRuler-foreground) inset;
  top: 0;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css */
.monaco-editor .scroll-decoration {
  position: absolute;
  box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset;
  height: 6px;
  top: 0;
  left: 0;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/selections/selections.css */
.monaco-editor .lines-content .cslr {
  position: absolute;
}

.monaco-editor .focused .selected-text {
  background-color: var(--vscode-editor-selectionBackground);
}

.monaco-editor .selected-text {
  background-color: var(--vscode-editor-inactiveSelectionBackground);
}

.monaco-editor .top-left-radius {
  border-top-left-radius: 3px;
}

.monaco-editor .bottom-left-radius {
  border-bottom-left-radius: 3px;
}

.monaco-editor .top-right-radius {
  border-top-right-radius: 3px;
}

.monaco-editor .bottom-right-radius {
  border-bottom-right-radius: 3px;
}

.monaco-editor.hc-black .top-left-radius {
  border-top-left-radius: 0;
}

.monaco-editor.hc-black .bottom-left-radius {
  border-bottom-left-radius: 0;
}

.monaco-editor.hc-black .top-right-radius {
  border-top-right-radius: 0;
}

.monaco-editor.hc-black .bottom-right-radius {
  border-bottom-right-radius: 0;
}

.monaco-editor.hc-light .top-left-radius {
  border-top-left-radius: 0;
}

.monaco-editor.hc-light .bottom-left-radius {
  border-bottom-left-radius: 0;
}

.monaco-editor.hc-light .top-right-radius {
  border-top-right-radius: 0;
}

.monaco-editor.hc-light .bottom-right-radius {
  border-bottom-right-radius: 0;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/viewCursors/viewCursors.css */
.monaco-editor .cursors-layer {
  position: absolute;
  top: 0;
}

.monaco-editor .cursors-layer > .cursor {
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
}

.monaco-editor .cursors-layer.cursor-smooth-caret-animation > .cursor {
  transition: all 80ms;
}

.monaco-editor .cursors-layer.cursor-block-outline-style > .cursor {
  border-style: solid;
  border-width: 1px;
  background: none !important;
}

.monaco-editor .cursors-layer.cursor-underline-style > .cursor {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  background: none !important;
}

.monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  background: none !important;
}

@keyframes monaco-cursor-smooth {
  0%, 20% {
    opacity: 1;
  }

  60%, 100% {
    opacity: 0;
  }
}

@keyframes monaco-cursor-phase {
  0%, 20% {
    opacity: 1;
  }

  90%, 100% {
    opacity: 0;
  }
}

@keyframes monaco-cursor-expand {
  0%, 20% {
    transform: scaleY(1);
  }

  80%, 100% {
    transform: scaleY(0);
  }
}

.cursor-smooth {
  animation: monaco-cursor-smooth .5s ease-in-out 0s 20 alternate;
}

.cursor-phase {
  animation: monaco-cursor-phase .5s ease-in-out 0s 20 alternate;
}

.cursor-expand > .cursor {
  animation: monaco-cursor-expand .5s ease-in-out 0s 20 alternate;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/viewParts/whitespace/whitespace.css */
.monaco-editor .mwh {
  position: absolute;
  color: var(--vscode-editorWhitespace-foreground) !important;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/widget/diffEditor/style.css */
.monaco-editor .diff-hidden-lines-widget {
  width: 100%;
}

.monaco-editor .diff-hidden-lines {
  height: 0;
  font-size: 13px;
  line-height: 14px;
  transform: translate(0, -10px);
}

.monaco-editor .diff-hidden-lines:not(.dragging) .top:hover, .monaco-editor .diff-hidden-lines:not(.dragging) .bottom:hover, .monaco-editor .diff-hidden-lines .top.dragging, .monaco-editor .diff-hidden-lines .bottom.dragging {
  background-color: var(--vscode-focusBorder);
}

.monaco-editor .diff-hidden-lines .top, .monaco-editor .diff-hidden-lines .bottom {
  background-color: #0000;
  background-clip: padding-box;
  border-top: 4px solid #0000;
  border-bottom: 2px solid #0000;
  height: 4px;
  transition: background-color .1s ease-out;
}

.monaco-editor.draggingUnchangedRegion.canMoveTop:not(.canMoveBottom) *, .monaco-editor .diff-hidden-lines .top.canMoveTop:not(.canMoveBottom), .monaco-editor .diff-hidden-lines .bottom.canMoveTop:not(.canMoveBottom) {
  cursor: n-resize !important;
}

.monaco-editor.draggingUnchangedRegion:not(.canMoveTop).canMoveBottom *, .monaco-editor .diff-hidden-lines .top:not(.canMoveTop).canMoveBottom, .monaco-editor .diff-hidden-lines .bottom:not(.canMoveTop).canMoveBottom {
  cursor: s-resize !important;
}

.monaco-editor.draggingUnchangedRegion.canMoveTop.canMoveBottom *, .monaco-editor .diff-hidden-lines .top.canMoveTop.canMoveBottom, .monaco-editor .diff-hidden-lines .bottom.canMoveTop.canMoveBottom {
  cursor: ns-resize !important;
}

.monaco-editor .diff-hidden-lines .top {
  transform: translate(0, 4px);
}

.monaco-editor .diff-hidden-lines .bottom {
  transform: translate(0, -6px);
}

.monaco-editor .diff-unchanged-lines {
  background: var(--vscode-diffEditor-unchangedCodeBackground);
}

.monaco-editor .noModificationsOverlay {
  z-index: 1;
  background: var(--vscode-editor-background);
  display: flex;
  justify-content: center;
  align-items:  center;
}

.monaco-editor .diff-hidden-lines .center {
  background: var(--vscode-diffEditor-unchangedRegionBackground);
  color: var(--vscode-diffEditor-unchangedRegionForeground);
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: inset 0 -5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow), inset 0 5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow);
  height: 24px;
}

.monaco-editor .diff-hidden-lines .center span.codicon {
  vertical-align: middle;
}

.monaco-editor .diff-hidden-lines .center a:hover .codicon {
  cursor: pointer;
  color: var(--vscode-editorLink-activeForeground) !important;
}

.monaco-editor .diff-hidden-lines div.breadcrumb-item {
  cursor: pointer;
}

.monaco-editor .diff-hidden-lines div.breadcrumb-item:hover {
  color: var(--vscode-editorLink-activeForeground);
}

.monaco-editor .movedOriginal, .monaco-editor .movedModified {
  border: 2px solid var(--vscode-diffEditor-move-border);
}

.monaco-editor .movedOriginal.currentMove, .monaco-editor .movedModified.currentMove {
  border: 2px solid var(--vscode-diffEditor-moveActive-border);
}

.monaco-diff-editor .moved-blocks-lines path.currentMove {
  stroke: var(--vscode-diffEditor-moveActive-border);
}

.monaco-diff-editor .moved-blocks-lines path {
  pointer-events: visiblestroke;
}

.monaco-diff-editor .moved-blocks-lines .arrow {
  fill: var(--vscode-diffEditor-move-border);
}

.monaco-diff-editor .moved-blocks-lines .arrow.currentMove {
  fill: var(--vscode-diffEditor-moveActive-border);
}

.monaco-diff-editor .moved-blocks-lines .arrow-rectangle {
  fill: var(--vscode-editor-background);
}

.monaco-diff-editor .moved-blocks-lines {
  position: absolute;
  pointer-events: none;
}

.monaco-diff-editor .moved-blocks-lines path {
  fill: none;
  stroke: var(--vscode-diffEditor-move-border);
  stroke-width: 2;
}

.monaco-editor .char-delete.diff-range-empty {
  border-left: solid var(--vscode-diffEditor-removedTextBackground) 3px;
  margin-left: -1px;
}

.monaco-editor .char-insert.diff-range-empty {
  border-left: solid var(--vscode-diffEditor-insertedTextBackground) 3px;
}

.monaco-editor .fold-unchanged {
  cursor: pointer;
}

.monaco-diff-editor .diff-moved-code-block {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.monaco-diff-editor .diff-moved-code-block .action-bar .action-label.codicon {
  width: 12px;
  height: 12px;
  font-size: 12px;
}

.monaco-diff-editor .diffOverview {
  z-index: 9;
}

.monaco-diff-editor .diffOverview .diffViewport {
  z-index: 10;
}

.monaco-diff-editor.vs .diffOverview {
  background: #00000008;
}

.monaco-diff-editor.vs-dark .diffOverview {
  background: #ffffff03;
}

.monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-black .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-light .scrollbar {
  background: none;
}

.monaco-scrollable-element.modified-in-monaco-diff-editor .slider {
  z-index: 10;
}

.modified-in-monaco-diff-editor .slider.active {
  background: #ababab66;
}

.modified-in-monaco-diff-editor.hc-black .slider.active, .modified-in-monaco-diff-editor.hc-light .slider.active {
  background: none;
}

.monaco-editor .insert-sign, .monaco-diff-editor .insert-sign, .monaco-editor .delete-sign, .monaco-diff-editor .delete-sign {
  align-items:  center;
  opacity: .7 !important;
  display: flex !important;
  font-size: 11px !important;
}

.monaco-editor.hc-black .insert-sign, .monaco-diff-editor.hc-black .insert-sign, .monaco-editor.hc-black .delete-sign, .monaco-diff-editor.hc-black .delete-sign, .monaco-editor.hc-light .insert-sign, .monaco-diff-editor.hc-light .insert-sign, .monaco-editor.hc-light .delete-sign, .monaco-diff-editor.hc-light .delete-sign {
  opacity: 1;
}

.monaco-editor .inline-deleted-margin-view-zone, .monaco-editor .inline-added-margin-view-zone {
  text-align: right;
}

.monaco-editor .arrow-revert-change {
  z-index: 10;
  position: absolute;
}

.monaco-editor .arrow-revert-change:hover {
  cursor: pointer;
}

.monaco-editor .view-zones .view-lines .view-line span {
  display: inline-block;
}

.monaco-editor .margin-view-zones .lightbulb-glyph:hover {
  cursor: pointer;
}

.monaco-editor .char-insert, .monaco-diff-editor .char-insert {
  background-color: var(--vscode-diffEditor-insertedTextBackground);
}

.monaco-editor .line-insert, .monaco-diff-editor .line-insert {
  background-color: var(--vscode-diffEditor-insertedLineBackground, var(--vscode-diffEditor-insertedTextBackground));
}

.monaco-editor .line-insert, .monaco-editor .char-insert {
  box-sizing: border-box;
  border: 1px solid var(--vscode-diffEditor-insertedTextBorder);
}

.monaco-editor.hc-black .line-insert, .monaco-editor.hc-light .line-insert, .monaco-editor.hc-black .char-insert, .monaco-editor.hc-light .char-insert {
  border-style: dashed;
}

.monaco-editor .line-delete, .monaco-editor .char-delete {
  box-sizing: border-box;
  border: 1px solid var(--vscode-diffEditor-removedTextBorder);
}

.monaco-editor.hc-black .line-delete, .monaco-editor.hc-light .line-delete, .monaco-editor.hc-black .char-delete, .monaco-editor.hc-light .char-delete {
  border-style: dashed;
}

.monaco-editor .inline-added-margin-view-zone, .monaco-editor .gutter-insert, .monaco-diff-editor .gutter-insert {
  background-color: var(--vscode-diffEditorGutter-insertedLineBackground, var(--vscode-diffEditor-insertedLineBackground), var(--vscode-diffEditor-insertedTextBackground));
}

.monaco-editor .char-delete, .monaco-diff-editor .char-delete, .monaco-editor .inline-deleted-text {
  background-color: var(--vscode-diffEditor-removedTextBackground);
}

.monaco-editor .inline-deleted-text {
  text-decoration: line-through;
}

.monaco-editor .line-delete, .monaco-diff-editor .line-delete {
  background-color: var(--vscode-diffEditor-removedLineBackground, var(--vscode-diffEditor-removedTextBackground));
}

.monaco-editor .inline-deleted-margin-view-zone, .monaco-editor .gutter-delete, .monaco-diff-editor .gutter-delete {
  background-color: var(--vscode-diffEditorGutter-removedLineBackground, var(--vscode-diffEditor-removedLineBackground), var(--vscode-diffEditor-removedTextBackground));
}

.monaco-diff-editor.side-by-side .editor.modified {
  box-shadow: -6px 0 5px -5px var(--vscode-scrollbar-shadow);
  border-left: 1px solid var(--vscode-diffEditor-border);
}

.monaco-diff-editor.side-by-side .editor.original {
  box-shadow: 6px 0 5px -5px var(--vscode-scrollbar-shadow);
  border-right: 1px solid var(--vscode-diffEditor-border);
}

.monaco-diff-editor .diffViewport {
  background: var(--vscode-scrollbarSlider-background);
}

.monaco-diff-editor .diffViewport:hover {
  background: var(--vscode-scrollbarSlider-hoverBackground);
}

.monaco-diff-editor .diffViewport:active {
  background: var(--vscode-scrollbarSlider-activeBackground);
}

.monaco-editor .diagonal-fill {
  background-image: linear-gradient(-45deg, var(--vscode-diffEditor-diagonalFill) 12.5%, #0000 12.5%, #0000 50%, var(--vscode-diffEditor-diagonalFill) 50%, var(--vscode-diffEditor-diagonalFill) 62.5%, #0000 62.5%, #0000 100%);
  background-size: 8px 8px;
}

.monaco-diff-editor .gutter {
  position: relative;
  overflow: hidden;
  flex-grow: 0;
  flex-shrink: 0;
}

.monaco-diff-editor .gutter > div {
  position: absolute;
}

.monaco-diff-editor .gutter .gutterItem {
  opacity: 0;
  transition: opacity .7s;
}

.monaco-diff-editor .gutter .gutterItem.showAlways {
  opacity: 1;
  transition: none;
}

.monaco-diff-editor .gutter .gutterItem.noTransition {
  transition: none;
}

.monaco-diff-editor .gutter:hover .gutterItem {
  opacity: 1;
  transition: opacity .1s ease-in-out;
}

.monaco-diff-editor .gutter .gutterItem .background {
  position: absolute;
  border-left: 2px var(--vscode-menu-border) solid;
  width: 1px;
  height: 100%;
  left: 50%;
}

.monaco-diff-editor .gutter .gutterItem .buttons {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items:  center;
  width: 100%;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar {
  height: -moz-fit-content;
  height: fit-content;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar {
  line-height: 1;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container {
  background: var(--vscode-editorGutter-commentRangeForeground);
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container .action-item:hover {
  background: var(--vscode-toolbar-hoverBackground);
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container .action-item .action-label {
  padding: 1px 2px;
}

.monaco-diff-editor .diff-hidden-lines-compact {
  display: flex;
  height: 11px;
}

.monaco-diff-editor .diff-hidden-lines-compact .line-left {
  border-top: 1px solid;
  border-color: var(--vscode-editorCodeLens-foreground);
  opacity: .5;
  width: 100%;
  height: 1px;
  margin: auto;
}

.monaco-diff-editor .diff-hidden-lines-compact .line-right {
  border-top: 1px solid;
  border-color: var(--vscode-editorCodeLens-foreground);
  opacity: .5;
  width: 100%;
  height: 1px;
  margin: auto;
}

.monaco-diff-editor .diff-hidden-lines-compact .line-left {
  width: 20px;
}

.monaco-diff-editor .diff-hidden-lines-compact .text {
  color: var(--vscode-editorCodeLens-foreground);
  text-wrap: nowrap;
  margin: 0 4px;
  font-size: 11px;
  line-height: 11px;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css */
.monaco-component.diff-review {
  user-select: none;
  -webkit-user-select: none;
  z-index: 99;
}

.monaco-diff-editor .diff-review {
  position: absolute;
}

.monaco-component.diff-review .diff-review-line-number {
  text-align: right;
  display: inline-block;
  color: var(--vscode-editorLineNumber-foreground);
}

.monaco-component.diff-review .diff-review-summary {
  padding-left: 10px;
}

.monaco-component.diff-review .diff-review-shadow {
  position: absolute;
  box-shadow: var(--vscode-scrollbar-shadow) 0 -6px 6px -6px inset;
}

.monaco-component.diff-review .diff-review-row {
  white-space: pre;
}

.monaco-component.diff-review .diff-review-table {
  display: table;
  min-width: 100%;
}

.monaco-component.diff-review .diff-review-row {
  display: table-row;
  width: 100%;
}

.monaco-component.diff-review .diff-review-spacer {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
}

.monaco-component.diff-review .diff-review-spacer > .codicon {
  font-size: 9px !important;
}

.monaco-component.diff-review .diff-review-actions {
  display: inline-block;
  position: absolute;
  z-index: 100;
  top: 2px;
  right: 10px;
}

.monaco-component.diff-review .diff-review-actions .action-label {
  width: 16px;
  height: 16px;
  margin: 2px 0;
}

.monaco-component.diff-review .revertButton {
  cursor: pointer;
}

/* node_modules/monaco-editor/esm/vs/base/browser/ui/toolbar/toolbar.css */
.monaco-toolbar {
  height: 100%;
}

.monaco-toolbar .toolbar-toggle-more {
  display: inline-block;
  padding: 0;
}

/* node_modules/monaco-editor/esm/vs/editor/browser/widget/multiDiffEditor/style.css */
.monaco-component.multiDiffEditor {
  background: var(--vscode-multiDiffEditor-background);
  position: relative;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
}

.monaco-component.multiDiffEditor > div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.monaco-component.multiDiffEditor > div.placeholder {
  visibility: hidden;
  display: grid;
  place-content:  center;
  place-items:  center;
}

.monaco-component.multiDiffEditor > div.placeholder.visible {
  visibility: visible;
}

.monaco-component.multiDiffEditor .active {
  --vscode-multiDiffEditor-border: var(--vscode-focusBorder);
}

.monaco-component.multiDiffEditor .multiDiffEntry {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex: 1;
}

.monaco-component.multiDiffEditor .multiDiffEntry .collapse-button {
  cursor: pointer;
  margin: 0 5px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .collapse-button a {
  display: block;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header {
  z-index: 1000;
  background: var(--vscode-editor-background);
}

.monaco-component.multiDiffEditor .multiDiffEntry .header:not(.collapsed) .header-content {
  border-bottom: 1px solid var(--vscode-sideBarSectionHeader-border);
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content {
  border-top: 1px solid var(--vscode-multiDiffEditor-border);
  display: flex;
  color: var(--vscode-foreground);
  background: var(--vscode-multiDiffEditor-headerBackground);
  align-items:  center;
  margin: 8px 0 0;
  padding: 4px 5px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content.shadow {
  box-shadow: var(--vscode-scrollbar-shadow) 0px 6px 6px -6px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path {
  display: flex;
  flex: 1;
  min-width: 0;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .title {
  font-size: 14px;
  line-height: 22px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .title.original {
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .status {
  opacity: .75;
  margin: 0 10px;
  font-weight: 600;
  line-height: 22px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .actions {
  padding: 0 8px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .editorParent {
  display: flex;
  border-bottom: 1px solid var(--vscode-multiDiffEditor-border);
  overflow: hidden;
  flex-direction: column;
  flex: 1;
}

.monaco-component.multiDiffEditor .multiDiffEntry .editorContainer {
  flex: 1;
}
