 /* Syntax highlighting */
 .token.comment,
 .token.prolog,
 .token.doctype,
 .token.cdata {
   color: #90a4ae;
 }
 .token.punctuation {
   color: #9e9e9e;
 }
 .namespace {
   opacity: 0.7;
 }
 .token.property,
 .token.tag,
 .token.boolean,
 .token.number,
 .token.constant,
 .token.symbol,
 .token.deleted {
   color: #e91e63;
 }
 .token.selector,
 .token.attr-name,
 .token.string,
 .token.char,
 .token.builtin,
 .token.inserted {
   color: #4caf50;
 }
 .token.operator,
 .token.entity,
 .token.url,
 .language-css .token.string,
 .style .token.string {
   color: #795548;
 }
 .token.atrule,
 .token.attr-value,
 .token.keyword {
   color: #3f51b5;
 }
 .token.function {
   color: #f44336;
 }
 .token.regex,
 .token.important,
 .token.variable {
   color: #ff9800;
 }
 .token.important,
 .token.bold {
   font-weight: bold;
 }
 .token.italic {
   font-style: italic;
 }
 .token.entity {
   cursor: help;
 }
 
 /* To avoid default focus border (outline) */
 *{
  outline: none !important
}

.panel-container {
  height: 100%;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

