/* Prism.js Theme — Eclipse ADT / ABAP Workbench inspired */
code[class*="language-"],
pre[class*="language-"] {
  color: #d4d4d4;
  background: none;
  font-family: 'IBM Plex Mono', Consolas, Monaco, 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  tab-size: 2;
  hyphens: none;
}

pre[class*="language-"] {
  padding: 20px;
  margin: 0;
  overflow: auto;
  background: #1e1e2e;
  border-radius: 8px;
}

:not(pre) > code[class*="language-"] {
  padding: 2px 6px;
  border-radius: 4px;
  background: #1e1e2e;
}

/* ABAP Keywords (REPORT, DATA, SELECT, etc.) — Eclipse blue */
.token.keyword { color: #569cd6; font-weight: 600; }

/* Strings — Eclipse orange/brown */
.token.string { color: #ce9178; }

/* Comments — Eclipse green */
.token.comment { color: #6a9955; font-style: italic; }

/* Numbers */
.token.number { color: #b5cea8; }

/* Operators */
.token.operator { color: #d4d4d4; }

/* Punctuation */
.token.punctuation { color: #808080; }

/* Types / Classes — Eclipse teal */
.token.class-name,
.token.type { color: #4ec9b0; }

/* Functions / Methods */
.token.function { color: #dcdcaa; }

/* Built-in / Constants */
.token.builtin,
.token.constant { color: #4fc1ff; }

/* Variables */
.token.variable { color: #9cdcfe; }

/* Boolean */
.token.boolean { color: #569cd6; }
