<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --primary-color: #993CF3;
    --secondary-color: Indigo;
  }
  #main_canvas{
    display: block;
    box-sizing: border-box;
    order: 1;
  }
  
  #activeEntiteDisplay{
    display: flex;
  }
  
  #rightDisplay{
    order: 2;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid black;
    background: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  
  #topSection{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 0.9em;
    font-family: Arial;
    padding: 2px;
  }
  
  #topSection input, button, select{
  
    border: 1px solid Indigo;
    color: White;
    font-weight: 400;
    border-radius: 2px;
    width: 50px;
    height: 25px;
    background: var(--secondary-color);
    margin: 1px 1px 1px 1px;
    padding: 1px 5px 1px 5px;
  }
  
  #ESbutton{
  
    width:50px; 
    height: 50px;
    align-items: center;
  }
  #shapeButtonContainer{
  
    position: absolute;
  }
  .UIbox{
    display: flex;
    justify-content: center;
    padding: 2px;
    align-items: center;
  }
  .textControls {
    padding: 3px;
  
  }
  .controlIcon{
  
    width: 35px;
    height: 35px;
    justify-content: center;
    padding: 2px;
    align-items: center;
  }
  #textPrompt{
  
    background: var(--secondary-color);
    position: absolute;
    padding: 5px;
    border: 1px grey outset;
  }
  .textControls .UIbox{
  
    display:flex; 
    justify-content: center; 
    padding: 2px; 
    align-items: center;
  }
  #addTextControl{
    border: 1px solid #000000; 
    width: 25vw; 
    height: 25vw; 
    max-width: 70px; 
    max-height: 70px; 
    background: white;
  }
  #textPromptInputBox{
  
    font-size: 4em;
  }</pre></body></html>