:root{
    --guide:rgb(11, 206, 255);
    --python : rgb(255, 214, 51);
    --powershell: rgb(77, 255, 136);
    --bash: rgb(153, 153, 153);
    --js:rgb(179, 0, 0);
  }
  
 pre.code {
    margin: 0px 0px;
    padding: 0px 0px;
    font-size: 1.3rem;
    font-family: "Consolas", "monaco", monospace;
    max-height: fit-content;
    overflow-x: scroll !important;
    /* white-space: pre-wrap; */
    margin-bottom: 30px;
    /* max-width:1090px; */
    min-height: 60px;
    /* cursor: url(/assets/images/blade.cur),auto; */

  /*   white-space: nowrap; */
  }
  .powershell{
   border-left: 7px solid var(--powershell);  
    background-color: rgb(12, 12, 69);
      color: var(--powershell)
  }
  
  .bash{
    border-left: 7px solid var(--bash); 
    background-color: rgb(53,55, 60);
    color: white;
  }
  
  .python{
      border-left: 7px solid var(--python);
       background-color: rgb(51, 51, 77);
      color: white;
  }
  .js {
        border-left: 7px solid var(--js);
       background-color: rgb(31, 0, 0);
      color: white;
  }
  .guide{
    border-left: 7px solid var(--guide);
    background-color: rgb(51, 51, 77);
   color: white;
  }
  .js:before{
      content:"js> ";
    color:var(--js);
    position:relative;
  }
  .powershell:before{
    content:"C:/ ";
    position:relative;
  }
  .bash:before{
    content:"$ ";
    color:var(--bash);
    position:relative;
  }
  .python:before{
        content:">>> ";
    position:relative;
    color:var(--python);
  }
  .guide:before{
    content:"GUIDE ";
    position:relative;
    color:var(--guide);
}