@font-face {
    font-family: 'Blue Sky Standard';
    font-weight: normal;
    src: url(../fonts/BlueSkyStandard-Regular.woff2);
}

@font-face {
    font-family: 'Blue Sky Standard';
    font-weight: bold;
    src: url(../fonts/BlueSkyStandard-Bold.woff2);
}

@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIconsOutlined.woff2) format('woff2');
}

body {
    font-family: Blue Sky Standard;
    background-color: #f6f6f6;
    
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body:has(.topbar) {
    padding-top: 56px;
}

.mdui-theme-layout-dark {
    background-color: #282828;
}

.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.mdui-select {
    font-family: Blue Sky Standard;
}

.mdui-dialog {
    border-radius: 8px;
}

.mdui-snackbar {
    width: 80%;
    max-width: 80%;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .8);
    color: black;
    margin-top: 16px;
    box-shadow: 0px .5px 2px 0px rgba(0, 0, 0, .1);
    
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mdui-snackbar-text i {
    font-size: 16px;
    vertical-align: sub;
    margin-right: 16px;
}

.topbar {
    height: 56px;
    line-height: 36px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    
    background-color: #f6f6f6;
}

.status-area {
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
}

.chip {
    margin-right: 8px;
    padding: 12px;
    font-size: 16px;
    background-color: white;
    border-radius: 21px;
    transition: filter .05s;
    -webkit-transition: filter .05s;
}

.chip i {
    font-size: 18px;
    vertical-align: sub;
}

.chip:active {
    filter: brightness(.92);
}

.app-card {
    margin-bottom: 16px;
    padding: 12px;
    background-color: white;
    border-radius: 8px;
    transition: filter .05s;
    -webkit-transition: filter .05s;
}

.app-card:active {
    filter: brightness(.92);
}

.app-card-icon i {
    margin-bottom: 10px;
    font-size: 32px;
}

.app-card-title {
    margin-bottom: 4px;
}

.app-card-text {
    font-size: 12px;
    opacity: .5;
}

.app-dialog-fullscreen {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background-color: #f6f6f6;
    transform: none;
    transition-duration: .1s;
    box-shadow: none;
}

.app-dialog-fullscreen .mdui-dialog-content {
    padding: 0;
    overflow: hidden;
}

.app-dialog-fullscreen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.my-info {
    display: flex;
}

.my-info-title {
    font-size: 18px;
}

.my-info-text {
    margin-top: 4px;
    opacity: .5;
}

.my-info-icon {
    margin-left: auto;
}

.my-info-icon i {
    font-size: 40px;
}

.card {
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    transition: padding .3s, border-radius .3s;
    -webkit-transition: padding .3s, border-radius .3s;
}

.card .mdui-list-item {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 32px;
    padding-right: 32px;
}

.mdui-collapse-item-open .mdui-collapse-item-header .card {
    border-radius: 8px 8px 0 0;
}

.mdui-collapse-item-open .mdui-collapse-item-body .card {
    padding: 0 16px 16px 16px;
    border-radius: 0 0 8px 8px;
}

.card-title {
    font-size: 16px;
}

.card-text {
    margin-top: 6px;
    font-size: 13px;
    opacity: .5;
}

.btn {
    width: 80%;
    padding: 14px;
    border: none;
    border-radius: 28px;
}

.pwa-bottom-nav {
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pwa-fullscreen-padding {
    padding-bottom: 16px;
}