
:root[color-mode="dark"]
{
  --background1: black;
  --header-logo: url('../images/Microsoft-logo_rgb_c-white.png');
  --header-text-color: white;
  --button-border-color: black;
  --header-text-divider: 2px solid gray;
  --text-color1: white;
  --text-color2: #BB86FC;
  --copy-button-image: url(../images/copy_button_dark_theme.png); 
  --toolbar-border-color: white;
  --button-hover-color: grey;

  
}

:root[color-mode="light"]
{
  --background1: white;
  --header-logo: url('../images/microsoft-logo-light.png');
  --header-text-color: #333333;
  --button-border-color: white;
  --header-text-divider: 2px solid black;
  --text-color1: #333333;
  --text-color2: #BB86FC;
  --copy-button-image: url(../images/copy_button_light_theme.png);
  --toolbar-border-color: black;
  --button-hover-color: #D3D3D3;
  
}

*:focus-visible {outline: 2px solid blue !important;}

body{
  background-color: var(--background1, black);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--background1, black);
}
  
  .guideHeader {
   display: flex;
   flex-direction: row;
   width: 100%;
   margin-top:10px; 
   margin-bottom:10px;
  
  }
  
  .headerLogo{
  
    background-image: var(--header-logo, url('../images/Microsoft-logo_rgb_c-white.png'));
    background-size:contain; 
    background-repeat:no-repeat; 
    background-position-x: 50%; 
    background-position-y: center; 
    height:23px; 
    width: 108px; 
    margin-right: 15px;
    float: left; 
  }

  
  .headerText{
  
    border-left: var(--header-text-divider, 2px solid gray); 
    padding-left: 10px; 
    font-family:"Segoe UI",sans-serif; 
    color: var(--header-text-color, white); 
    font-size:18px; 
    font-weight: 600;
    line-height:23px; 
  }

  .filler{
    flex-grow: 1;
  }

   
  .headerButtonContainer{

    display:flex;
    flex-direction:row;
    float:right;
  }
  
  button{
    background-color: var(--background1, black);
    border-radius: 4px;
    border:1px solid var(--button-border-color, black);
    text-align: center;
    font-family:"Segoe UI",sans-serif; 
    color:var(--text-color1, white); 
    font-size:18px; 
    font-weight: 600; 
    text-decoration: none;
  }

  button:hover{
    background-color: var(--button-hover-color, grey);
  }
  
  a{
    color: var(--text-color2,#BB86FC );
  }


  .copyButton{

      background-image: var(--copy-button-image, url(../images/copy_button_dark_theme.png)); 
      background-size: 13px 13px; 
      background-color: var(--background1, black);
      height: 13px; 
      width: 13px; 
      border-style:none;
      border-color: var(--background1, black);
    }
    
  .interactive-guide-container {
     display:flex;
     flex-direction: row;
     width: 100%;
     flex-grow: 1;
    }
  
   
    .captivateSimContainer {
      display:flex;
      flex-direction:column;
      background-color: var(--background1, black); 
      height: 90vh;
      flex-grow: 1;
      margin: 0px 0px 00px 0px;
   }
  
   .captivateSim{
    display:flex;
    flex-grow: 1;
    overflow: hidden;
    display:flex;
    flex-grow: 1;
    /* old styles
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    */
  }
   .guide_toolbar {
      /*width: 80vw;
      position: absolute;
      bottom: 10;*/
      text-align: center;
      width: fit-content;
      margin:auto;
      border:2px solid var(--toolbar-border-color, white);
      border-radius: 6px;
      margin-top: 4px;

   }

   .guide_toolbar * {
      padding-top: 1px;
      padding-bottom: 1px;

   }


   .toolbarLeftButton {
      padding-left: 6px;
   }


   .toolbarRightButton {
     padding-right: 6px;
   }


    .labGuideContainer {
      height: 90vh;
      /*width: 400px;*/
      width: 0vw;
      margin: 0px 0px 0px 20px;
      overflow: auto;
      visibility: hidden;
      transition: visibility 0.2s linear;
    }
  
    .labGuide, .labGuideContainer:hover, .labGuideContainer:focus{
      visibility: visible;
      transition: visibility 0.2s linear;
    }
  
  
  
  
  /* header and list item definitions */
  
  h1{
    font-size:18pt;
    font-family:"Segoe UI",sans-serif;
    color:var(--text-color1, white); 
  }
  
  h2{
    font-size:16pt;
    font-family:"Segoe UI",sans-serif;
    color: var(--text-color1, white); 
  }

  h3{
    font-size:14pt;
    font-family:"Segoe UI",sans-serif;
    color: var(--text-color1, white); 
  }
  p, li{
    font-size:14pt;
    font-family:"Segoe UI",sans-serif;
    color: var(--text-color1, white); 
    line-height: normal;
    font-weight: normal;
  }
  
  input[type="checkbox"]:checked{
    background-color: var(--background1, black);
  }

  
  