/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

 html,
 body {
     width: 100%;
     height: 100%;
     margin: 0 2%;
     padding: 0;
     overflow-x: hidden;
 }

 ul {
     margin: 0;
     padding: 0;
 }

 .ms-welcome__main {
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: column;
     flex-direction: column;
     -webkit-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-flex: 1 0 0;
     flex: 1 0 0;
 }
 
 .ms-welcome__main > h2 {
     font-weight: 500;
 }

 .ms-welcome__features {
     list-style-type: none;
     margin-top: 20px;
 }

 .ms-welcome__features.ms-List .ms-ListItem {
     padding-bottom: 10px;
     display: -webkit-flex;
     display: flex;
 }

 .ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
     margin-right: 10px;
 }

 .ms-welcome__action.ms-Button--hero {
     margin-top: 10px;
 }
 
 .ms-Button.ms-Button--hero .ms-Button-label {
     color: #0078d7;
 }

 .ms-Button.ms-Button--hero:hover .ms-Button-label,
 .ms-Button.ms-Button--hero:focus .ms-Button-label {
     color: #005a9e;
     cursor: pointer;
 }

 .ms-DropdownList {
     width: 100%;
     padding: 7px;
 }

 .ms-Inputs {
     padding: 5px;
     width: 88%;
 }

 .error-msg {
     font-size: 16px;
     font-weight: 200;
     margin-top: 10px;
     color: #ff0000;
     display: none;
 }

 b {
     font-weight: bold;
 }

 .tree-border {
     border: 1px solid #767676;
     border-radius: 2px;
     padding: 10px;
     width: 86%;
     height: 115px;
     max-height: 300px;
     overflow-y: auto;
 }
  
 .folder {
     padding-left: 5px;
     cursor: pointer;
     font-weight: 800;
 }

 .file {
    padding-left: 5px;
    cursor: pointer;
    font-weight: 500;
 }
  
 .folder::before {
     content: "📁 ";
 }
  
 .folder.expanded::before {
     content: "📂 ";
 }
  
 .file::before {
     content: "📄 ";
 }
  
 .hidden {
     display: none;
 }
  
 .selected {
     background-color: #0078d4;
     color: white;
 }

 .buttons {
    width: 92%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
 }