
pre[class*="language-"],
code[class*="language-"] {
  color: #4c4f69;
  font-size: 14px;
  text-shadow: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none
}

pre[class*="language-"] {
  padding: 2em 1em 1em 1em;
  margin: .5em 0;
  overflow: auto;
  background: #4c4f69;
}


:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	/* background: #e6e9ef; */
  /*follow the background color of https://nuqs.dev/docs/adapters#nextjs-app-router */
  background: #fcfcfc;
}


/* https://prismjs.com/tokens.html */

.token.keyword {
	color: #8839ef;
}

.token.builtin {
	color: #d20f39;
}

.token.class-name {
	color: #df8e1d;
}

.token.function {
	color: #1e66f5;
}

.token.boolean,
.token.number {
	color: #fe640b;
}

.token.string,
.token.char {
	color: #40a02b;
}

.token.symbol {
	color: #df8e1d;
}

.token.regex {
	color: #ea76cb;
}

.token.url {
	color: #40a02b;
}

.token.operator {
	color: #04a5e5;
}

.token.variable {
	color: #4c4f69;
}

.token.constant {
	color: #fe640b;
}

.token.property {
	color: #1e66f5;
}

.token.punctuation {
	color: #7c7f93;
}

.token.important {
	color: #8839ef;
}

.token.comment {
	color: #7c7f93;
}

.token.tag {
	color: #1e66f5;
}

.token.attr-name {
	color: #df8e1d;
}

.token.attr-value {
	color: #40a02b;
}

.token.namespace {
	color: #df8e1d;
}

.token.prolog,
.token.doctype {
	color: #8839ef;
}

.token.cdata {
	color: #179299;
}

.token.entity {
	color: #d20f39;
}

.token.atrule {
	color: #8839ef;
}

.token.selector {
	color: #1e66f5;
}

/* Diff */

.token.deleted {
	color: #d20f39;
}

.token.inserted {
	color: #40a02b
}

/* Other */

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}



/* Line numbers */

pre[class*="language-"].line-numbers
{
  /* position: relative; */
  padding-left: 3.8em;
  counter-reset: linenumber;
}

pre[class*="language-"].line-numbers > code 
{
  position: relative;
  white-space: inherit;
}

.line-numbers .line-numbers-rows 
{
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: -3.8em;
  width: 3em; /* works for line-numbers below 1000 lines */
  letter-spacing: -1px;
  border-right: 1px solid #999;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.line-numbers-rows > span 
{
  pointer-events: none;
  display: block;
  counter-increment: linenumber;
}

.line-numbers-rows > span:before 
{
  content: counter(linenumber);
  color: #999;
  display: block;
  padding-right: 0.8em;
  text-align: right;
}

/* Toolbar for copying */


/* Toolbar plugin overrides */
 /* Space out all buttons and move them away from the right edge of the code block */
 div.code-toolbar {
  /* follow https://nuqs.dev/docs/adapters#nextjs-app-router */
  position: relative;
  border:1px solid rgb(228, 228, 231);
  border-radius: 0.75rem;
}

div.code-toolbar>.toolbar {
  position: absolute;
  top: .3em;
  right: .2em;
  transition: opacity 0.3s ease-in-out;
  opacity: 1
}

div.code-toolbar:hover>.toolbar {
  opacity: 1
}

div.code-toolbar:focus-within>.toolbar {
  opacity: 1
}

div.code-toolbar>.toolbar .toolbar-item {
  display: inline-block
}

div.code-toolbar>.toolbar a {
  cursor: pointer
}

div.code-toolbar>.toolbar button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

div.code-toolbar>.toolbar a,
div.code-toolbar>.toolbar button,
div.code-toolbar>.toolbar span {
  color: #000;
  font-size: .8em;
  padding: 0 .5em;
  background: #FFC0CB;
  /* box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2); */
  border-radius: .5em
}

div.code-toolbar button.copy-to-clipboard-button span{
  font-size:1.1em;
  font-weight:bold;
  color:rgb(10, 173, 10);
}
div.code-toolbar button.copy-to-clipboard-button span:hover{
  font-size:1.2em;
}


div.code-toolbar>.toolbar a:hover,
div.code-toolbar>.toolbar a:focus,
div.code-toolbar>.toolbar button:hover,
div.code-toolbar>.toolbar button:focus,
div.code-toolbar>.toolbar span:hover,
div.code-toolbar>.toolbar span:focus {
  color: #FF1493;
  text-decoration: none
}