/* 
 * 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;
     padding: 0;
 }
 
 ul {
     margin: 0;
     padding: 0;
 }
 
 .ms-welcome__header {
    padding: 20px;
    padding-bottom: 30px;
    padding-top: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
 }

 .ms-welcome__main {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
    padding: 10px 20px;
 }
 
 .ms-welcome__main > h2 {
     width: 100%;
     text-align: center;
 }
 
 .ms-welcome__features {
     list-style-type: none;
     margin-top: 20px;
 }
 
 .ms-welcome__features.ms-List .ms-ListItem {
     padding-bottom: 20px;
     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: 30px;
 }
 
.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;
}

b {
    font-weight: bold;
}

/* App body visibility */
.app-body-hidden {
    display: none;
}

/* Ping result styling */
.ping-result {
    background: #f3f2f1;
    padding: 10px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word; /* IE fallback */
    overflow-wrap: break-word; /* Modern browsers */
}

/* Status message styling */
.status-message {
    margin-top: 10px;
    color: #107c10;
    min-height: 20px;
}

/* Symbol side text input */
.symbol-side-text {
    margin-top: 5px;
}

/* Symbol result container */
.symbol-result {
    margin-top: 10px;
    display: none;
}

/* Symbol error message */
.symbol-error {
    margin-top: 10px;
    color: #d13438;
    display: none;
}

/* Diagnostics panel styling */
.diagnostics-panel {
    border: 1px solid #c8c6c4;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
    background-color: #faf9f8;
}

.diagnostics-warning {
    color: #d13438;
    font-style: italic;
    margin-bottom: 10px;
}

.diagnostics-json {
    background: #f3f2f1;
    padding: 10px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
    font-size: 12px;
    border: 1px solid #c8c6c4;
    border-radius: 2px;
}

.diagnostics-last-updated {
    margin-top: 10px;
    color: #605e5c;
    font-size: 11px;
}

.diagnostics-error {
    margin-top: 10px;
    color: #d13438;
}