/* 
 * 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: 24px 20px;
    background-color: #333333;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
 }

 .brand-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
 }

 .ms-welcome__main {
    display: -webkit-flex;
    display: flex;
    -webkit-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;
    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;
}

/* Filter toggle switch */
.filter-toggle-row {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 16px;
}

/* Clear filter button — right of the toggle */
.clear-btn {
    margin-left: auto;
    padding: 5px 12px;
    font-family: inherit;
    font-size: 14px;
    color: #ffffff;
    background-color: #0078d7;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.clear-btn:hover {
    background-color: #106ebe;
}

.clear-btn:active {
    background-color: #005a9e;
}

.clear-btn:focus {
    outline: 2px solid rgba(0, 120, 215, 0.4);
    outline-offset: 1px;
}

.switch {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-track {
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #767676;
    border-radius: 10px;
    transition: background-color 0.15s ease-in;
    vertical-align: middle;
}

.switch-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.15s ease-in;
}

.switch input:checked + .switch-track {
    background-color: #0078d7;
}

.switch input:checked + .switch-track .switch-knob {
    transform: translateX(20px);
}

.switch input:focus + .switch-track {
    box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.4);
}

.switch-label {
    margin-left: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Current filter read-out and status */
.current-filter {
    width: 100%;
    text-align: center;
    margin-bottom: 14px;
}

.filter-model {
    font-weight: bold;
    font-size: 15px;
}

.filter-url {
    display: inline-block;
    margin-top: 2px;
    color: #0078d7;
    text-decoration: none;
    word-break: break-all;
}

.filter-url:hover {
    text-decoration: underline;
}

.status {
    width: 100%;
    text-align: center;
    margin-top: 14px;
    color: #605e5c;
    min-height: 1em;
}