/* prism-geo.css — light Prism theme matching geo-dashboard color scheme */
/* Overrides the default Prism Tomorrow Night theme */
code[class*="language-"],
pre[class*="language-"] {
  color: #1A2E3B;
  background: #EBF6FB;
  text-shadow: none;
  font-family: 'Fira Code', 'Cascadia Code', Consolas, monospace;
  font-size: 0.875em;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.6;
  tab-size: 2;
  hyphens: none;
}
pre[class*="language-"] {
  padding: 1.25rem 1.5rem;
  overflow: auto;
  border-radius: 8px;
  border: 1px solid #B2DAE9;
}
:not(pre) > code[class*="language-"] {
  padding: 0.1em 0.4em;
  border-radius: 4px;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata        { color: #4E7089; font-style: italic; }
.token.punctuation  { color: #4E7089; }
.token.namespace    { opacity: .7; }
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted      { color: #FF7C35; }
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted     { color: #2a7c3f; }
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string { color: #0E7EA4; }
.token.atrule,
.token.attr-value,
.token.keyword      { color: #0E7EA4; font-weight: 600; }
.token.function,
.token.class-name   { color: #8b3a9e; }
.token.regex,
.token.important,
.token.variable     { color: #FF7C35; }
.token.important,
.token.bold         { font-weight: bold; }
.token.italic       { font-style: italic; }

