/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
    height: 100vh;
    width: 100%;
    background-color: rgb(249, 250, 251);
    color: #333;
}

#app {
    display: grid;
    grid-template-columns: 250px 1fr;  /* Sidebar | Main Content */
    grid-template-rows: 1fr;
    height: 100vh;
    width: 100%;
}

#sidebar {
    background-color: #fff;
    border-right: 1px solid rgb(228, 231, 236);
}

#siderbar .nav-header {

}