/* 
 * 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: 100px 20px 30px 20px;
  text-align: center;
}

.ms-welcome__main {
  padding: 10px 20px;
  text-align: left;
  background-color: #ffffff;
}

.ms-welcome__main > * {
  display: block;
  margin: 0 auto 10px auto;
  width: 100%;
  box-sizing: border-box;
}
 
 .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;
     */
     display: block;
 }
 
 .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;
}

#mw-prop-list {
     list-style-type: none;
     margin-top: 20px;
 }
 
 #mw-prop-list.ms-List .ms-ListItem {
     padding-bottom: 0.5rem;
     display: block;
 }
 
 #mw-prop-list.ms-List .ms-ListItem > .ms-Icon {
     margin-right: 10px;
 }

.mw-prop-label {
    display: block;
}

.mw-prop-val pre {
    margin: 0;
    padding: 0.5rem;
    background-color: #f3f2f1;
    border-radius: 4px;
    overflow-x: auto;
    white-space: pre-wrap; /* Wraps lines on small screens */
    word-break: break-word;
}

.ms-CommandBar .ms-CommandButton[disabled] .ms-CommandButton-label {
  font-weight: 600;
  pointer-events: none;
  opacity: 1;
}

.mw-font-xs{
    font-size: 10px !important;
}
.mw-font-s{
    font-size: 12px !important;
}
.mw-font-m{
    font-size: 14px !important;
}
.mw-font-l{
    font-size: 16px !important;
}
.mw-font-xl{
    font-size: 18px !important;
}

/*Dialog*/
.hidden {
  display: none;
}

.ms-Dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* Safe in IE11 */
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.ms-Dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 320px;
  transform: translate(-50%, -50%);
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
}

.ms-Dialog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ms-Dialog-subText {
  margin-bottom: 20px;
  color: #333;
}

.ms-Dialog-actions {
  text-align: right;
}

.ms-Button {
  padding: 6px 12px;
  margin-left: 8px;
  border: none;
  cursor: pointer;
  background: #f3f2f1;
}

.ms-Button--primary {
  background-color: #0078d4;
  color: white;
}

.ms-Button:hover {
  background-color: #e1dfdd;
}

.ms-Button--primary:hover {
  background-color: #005a9e;
}

.accordion-header {
    width: 100%;
    text-align: left;
    font-weight: bold;
    padding: 10px;
    border: none;
    background-color: #f3f2f1;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid #e1dfdd;
  }

  .accordion-body {
    padding: 10px;
    border-bottom: 1px solid #e1dfdd;
    background-color: #ffffff;
  }

  .accordion-header.active {
    background-color: #e1dfdd;
  }

  .ms-Dialog-footer{
    text-align: center;
    padding-top:15px;
  }

.mw-ListItem-narrow {
  padding-left: 10px !important;
  padding-right: 10px !important;
}