/* 
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

 html,
 body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f2f1;
    margin: 0 5px;
 }
 
 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: 18px;
     font-weight: 200;
     margin-top: 15px;
     color: #008000;
 }
 
 b {
     font-weight: bold;
 }

 a {
     text-decoration: none;
     color: unset;
 }

 .dialog-container {
     max-width: 400px;
     padding: 20px;
     box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
     border-radius: 8px;
     background-color: white;
     text-align: center;
 }
 
 .logo {
     width: 80px;
     margin-top: 10px;
 }

 .title {
     font-size: 1.2em;
     font-weight: 600;
     margin-top: 10px;
     color: #10354a;
 }

 .version {
     font-size: 1em;
     font-weight: 500;
     color: #c3a283;
     margin-top: 5px;
 }

 .description {
     font-size: 0.9em;
     color: #323130;
     margin-top: 15px;
     line-height: 1.4;
 }

 .footer {
     margin-top: 20px;
     color: #0078d4;
     font-size: 0.85em;
     cursor: pointer;
 }