head {
    margin: 0;
}

* {
    box-sizing: border-box;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    background-color: #eeeeee;
    color: #212529;
    font-weight: 400;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: "Material Design";
    src: url(/fonts/materialdesignicons-webfont.ttf),
        url(/fonts/materialdesignicons-webfont.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

.day-icons {
    font-family: 'Material Design';
    font-weight: normal;
    font-style: normal;
    font-size: 28px;
    margin: 2px 2px 10px 0px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    height: 75px;
    width: 100%;
    background-color: #3a3a52;
    z-index: 99;
    box-shadow: 10px 4px 20px 20px #0000005e;
}

.header-logo {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.header-logo a {
    height: 100%;
}

.header-logo img {
    padding-left: 20px;
    height: 100%;
    width: max-content;
}

.header-nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    background-color: #3a3a52a2;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0px 10px #0000005e;
    display: none;
    flex-direction: column;
    align-items: center;
}

.header-nav-sidebar-item {
    font-size: 25px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.header-nav-sidebar-item:hover {
    filter: opacity(0.8);
    backdrop-filter: brightness(0.8);
}

#menu-button {
    display: none;
}

.header-nav {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
}

#header-nav-icon {
    font-size: 25px;
    color: white;
}

.header-nav-item {
    font-size: 20px;
    padding: 5px 10px;
    text-align: right;
    cursor: pointer;
    display: inline-flex;
}

.header-nav-item:hover {
    filter: opacity(0.8);
}

@media (max-width: 800px) {
    #hideOnMobile {
        display: none;
    }
    #menu-button {
        display: inline-flex;
    }
}

@media (max-width: 550px) {
    .header-nav-sidebar {
        width: 100%;
    }
}

.content-wrapper {
    width: 100%;
    margin-top: 100px;
    padding: 20px;
}

.stats {
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px #0000001a;
    padding: 20px;
    gap: 5px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}

.stat p {
    margin: 0;
    color: #3a3a52;
}

.stat span {
    font-size: 24px;
    color: black;
}

.charts {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px #0000001a;
    margin-top: 20px;
    padding: 20px;
    gap: 5px;
}