:root {
    --darkgray: rgba(0, 0, 0, 0.8);
    --primary: #16c2a6;
}
body {
    display: grid;
    height: 100vh;
    min-width: 1200px;
    min-height: 600px;
    margin: 0;
    grid-template: 60px auto / 220px auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
    grid-column: 1 / 3;
    color: brown;
}

.left-sidebar {
    grid-column: 1 / 2;
    position: relative;
}

main {
    padding: 48px 60px;
    display: grid;
    background: #f0f5f4;
    grid-column: 2 / 3;
    border-radius: 4px 0 0 0;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
        "a a . . . ."
        "b b c c c c"
        "b b c c c c";
    gap: 16px;
}
.intro {
    /* grid-column: 1 / 3; */
    background: white;
    border-radius: 4px;
    grid-area: a;
    display: flex;
    align-items: center;
    padding: 16px;
}
.intro > div {
    min-height: 165px;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.intro button {
    width: auto;
    height: 44px;
    background-color: var(--primary);
    border: none;
    color: white;
    width: 100%;
    border-radius: 4px;
}
.data {
    /* grid-column: 3 / 4; */
    background: white;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.data .date {
    color: var(--darkgray);
}
.data .number {
    color: var(--darkgray);
    font-size: 32px;
    margin-top: 20px;
    font-weight: 600;
}
.storage {
    /* grid-column: 1 / 3; */
    /* grid-row: 2 / 4; */
    grid-area: b;
    background: white;
    border-radius: 4px;
    padding: 16px;
    font-weight: 700;
    min-width: 300px;
}
.storage > div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 280px; */
}
.graph {
    /* grid-column: 3/7; */
    /* grid-row: 2 / 4; */
    grid-area: c;
    background: white;
    border-radius: 4px;
    padding: 16px;
    font-weight: 700;
}
.graph > div {
    margin-top: 32px;
    margin-right: 16px;
    height: 85%;
}
