/* PrismJS 1.29.0
https://prismjs.com/download.html#themes=prism-solarizedlight&languages=matlab */
/*
 Solarized Color Schemes originally by Ethan Schoonover
 http://ethanschoonover.com/solarized

 Ported for PrismJS by Hector Matos
 Website: https://krakendev.io
 Twitter Handle: https://twitter.com/allonsykraken)
*/

/*
SOLARIZED HEX
--------- -------
base03    #002b36
base02    #073642
base01    #586e75
base00    #657b83
base0     #839496
base1     #93a1a1
base2     #eee8d5
base3     #fdf6e3
yellow    #b58900
orange    #cb4b16
red       #dc322f
magenta   #d33682
violet    #6c71c4
blue      #268bd2
cyan      #2aa198
green     #859900
*/

pre[class*="language-"], code[class*="language-"] {
    display:block;
    color: #3F21C2; /* base00 */
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    text-align: left;

    white-space: pre-wrap !important; /* Ajusta el texto al contenedor */
    word-break: break-word !important; /* Rompe palabras largas */
    overflow-x: hidden !important; /* Oculta el scroll horizontal */
    max-width: 100vw !important; /* Se asegura que no sobrepase el ancho de la ventana */
    width: 100% !important; /* Se asegura que el código se ajuste al contenedor */

    
    font-size: 16px; /* Tamaño de la letra */
    line-height: 1.1; /* Espaciado entre líneas */
    padding: 1px 12px 6px 10px; /* Espaciado interno */
   
    
     -moz-tab-size: 4;
     -o-tab-size: 4;
    tab-size: 4;
   
}



pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	background: #073642; /* base02 */
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	background: #073642; /* base02 */
}

/* Code blocks */
pre[class*="language-"] {
	margin: 0.5em 0;
	overflow: auto;
	border-radius: 0.3em;
	 border: 2px solid rgba(91,51,128,0.2);
	
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	 background-color: rgba(192,192,192,0.05); /* base3 */
}

/* Inline code */
:not(pre) > code[class*="language-"] {
   padding: .1em
	border-radius: .3em;
       
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #93a1a1; /* base1 */
}

.token.punctuation {
	color: #586e75; /* base01 */
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #268bd2; /* blue */
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.url,
.token.inserted {
	color: #2aa198; /* cyan */
}

.token.entity {
	color: #657b83; /* base00 */
	background: #eee8d5; /* base2 */
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #859900; /* green */
}

.token.function,
.token.class-name {
	color: #b58900; /* yellow */
}

.token.regex,
.token.important,
.token.variable {
	color: #cb4b16; /* orange */
}

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

.token.entity {
	cursor: help;
}

/* Color de los comentarios */
.token.comment {
    color: #6a9955 !important; /* Verde oscuro */
}

/* Color de los parámetros de función */
.token.parameter {
    color: #657b83 !important; /* Amarillo */
    font-weight: bold;
}

/* Color de palabras clave (if, for, while, etc.) */
.token.keyword {
    color: #d19a66 !important; /* Naranja */
    font-weight: bold;
}


/* Color de funciones */
.token.function {
    color: #3F21C2 !important; /* Azul claro */
}

/* Color de los números */
.token.number {
    color: #d19a66 !important;
}

/* Color de las cadenas de texto */
.token.string {
    color: magenta !important; /* Verde claro */
}


