* {
    margin: 0;
    padding: 0;
}

html,
body,
article {
    height: 100%;
}

article {
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    display: none;
}

main {
    height: auto;
    flex: 1;
}

article {
    background-image: linear-gradient(rgb(235, 242, 255), rgb(255, 255, 255));
    display: flex;
    flex-direction: column;
}

content {
    height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1rem 0 1rem;
    align-items: center;
}

.header>div {
    display: flex;
}

.header>div>img {
    width: 3rem;
    object-fit: contain;
}

.header>div>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.75rem;
}

.header>div>div>span:first-child {
    font-weight: bold;
    font-size: 1.5rem;
    background-image: linear-gradient(to right, #00a4ff, #ed6336);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent
}

.header>div>div>img {
    height: 1.5rem;
    object-fit: contain;
}

.header>a {
    text-decoration: none;
    padding: 0.5rem 0.625rem;
    border-radius: 0.125rem;
    color: #fff;
    background-color: #e3aa6c;
    font-size: 0.875rem;
}

.header>a:hover {
    background-color: #e58113;
}

.container {
    display: flex;
    flex-direction: column;
}

#chart {
    width: calc(100% - 1.25rem);
    height: 18rem;
    padding: 0.75rem;
    margin: 1rem 0.625rem;
    box-shadow: 0 0 0.25rem 0.25rem rgb(211, 233, 249);
    box-sizing: border-box;
}

#chart>* {
    box-sizing: border-box;
}

.container .list {
    margin: 1rem 0.625rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1rem;
}

.container .list>div {
    background: #ffffff59;
    box-shadow: 0 0 0.125rem 0.125rem rgb(211, 233, 249);
    height: 3.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
    justify-content: space-between;
}

.container .list>div:not(:first-of-type) {
    margin-top: 0.625rem;
}

.container .list>div>span:nth-child(2) {
    font-weight: bold;
    word-break: break-all;
    max-width: 60%;
    line-height: 1.2;
}

.container .list>div.error>span:nth-child(2) {
    color: #ff0000;
}
.container .list>div.warn>span:nth-child(2) {
    color: #ffdd2d;
}

.container .list>div.info>span:nth-child(2) {
    color: #05c091;
}

footer {
    margin-top: 0;
    border: none;
}

footer .copyRight {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 1rem;
    font-size: 0.875rem;
    color: #999;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    background: #fff;
}