@charset "utf-8";

html {
    background-color: var(--hli-color-background-1, #F5F6F7);
}
html, body {
    height: 100%;
    overscroll-behavior: none;
}

body {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    background-color: var(--hli-color-background-0, #FFFFFF);
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body .container {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 20px 0 20px;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
}
/*
body > .content {
    padding: 10px 20px 0px 20px;
}
body > .content:not(:first-child) {
    padding: 0 20px;
}
body > .content:last-child {
    padding: 0 0;
}
*/

.statusbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    margin-bottom: 20px;
    height: 32px;
}
.statusbar .ic_time { width: 34px; margin-right: 2px }
.statusbar .ic_cellular { width: 24px; margin-left: 2px }
.statusbar .ic_wifi { width: 20px; margin-left: 2px }
.statusbar .ic_battery { width: 30px; margin-left: 2px }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
header .left_area {
    display: flex;
    align-items: center;
}
header .right_area {
    display: flex;
    align-items: center;
}
header .ic_reload { width: 28px; margin-right: 2px }
header .title { font-size: 1.125rem; }
header .ic_close { width: 33px; margin-left: 2px }

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    overflow: scroll;
}

footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.content_column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.content_row {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}