/* 
 * 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;
    flex-direction: column;
    align-items: center;
 }

 .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;
}

.parameter-container {
    margin-left: 20px;
    margin-right: 20px;
}

.selectable-chip-m {
    height: 32px;
    width: 65px;
    background: #F3F2F1;
    border: 1px solid hsl(30, 2%, 53%);
    box-sizing: border-box;
    border-radius: 2px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.selectable-chip-m:hover {
    cursor: pointer;
}

.selectable-chip-s {
    height: 32px;
    width: 50px;
    background: #F3F2F1;
    border: 1px solid hsl(30, 2%, 53%);
    box-sizing: border-box;
    border-radius: 2px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.selectable-chip-s:hover {
    cursor: pointer;
}

.chip-display {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.chip-display > div {
    width: 100%;
}

.text-box-display {
    max-width: 75px;
}

.text-box-display-selected > div > div {
    border: 2px solid rgb(0, 120, 212);
}

.drop-down-display {
    min-width: 100px;
    max-width: 200px;
}

.meeting-buffer-display {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.meeting-buffer-body {
    width: 150px;
    height: 32px;
    background: #0078D4;
}

.propose-times-submit {
    margin-top: 10px;
    margin-right: 10px;
    width: 100%;
}

.appointment-card {
    position: relative;
    width: 90%;
    border: 1px solid;
    box-sizing: border-box;
    border-radius: 2px;
}

.calendar-display {
    border: 1px solid #8A8886;
    box-sizing: border-box;
    border-radius: 2px;
    width: 60%;
    position: absolute;
    top: 50px;
    bottom: 50px;
    margin-left: 60px;
    display: flex;
    flex-direction: row;
}

.calendar-daterange-display {
    display: flex;
    flex-direction: row;
    width: 300px;
    justify-content: space-between;
    align-items: center;
    margin-left: 60px;
}

.day-display {
    width: 14.28%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: left;
    border: 1px solid #8A8886;
    box-sizing: border-box;
}

.day-label-display {
    margin-left: 5px;
}

.appointments-display {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.time-chip-display {
    display: inline-block;
    align-items: center;
    padding: 0px;
    border-radius: 2px;
    border-width: 2px;
    padding: 1px 4px;
    margin-right: 7px;
    margin-top: 8px;
}

.time-chip-display:hover {
    cursor : pointer;
}

.free {
    background: #C7E0F4;
    border: solid #C7E0F4;
}

.tentative {
    background: rgba(255, 200, 10, 0.5);
    border: solid rgba(255, 200, 10, 0.5);
}

.busy {
    background: rgba(250, 65, 0, 0.2);
    border: solid rgba(250, 65, 0, 0.2);
}

.disabled {
    background:  #A19F9D !important;
}

.time-chip-label {
    margin-block-start: 2px;
    margin-block-end: 2px;
    align-items: center;
    user-select: none;
}

.confirmation-container {
    margin-left: 20px;
    margin-right: 20px;
}

.slots-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.radio-textbox {
    display: flex;
    align-items: center;
}

.day-label-display {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon-button-display {
    margin-left: 2px;
}