:root {
    --navbar-height: 60px;
    --sidebar-width: 250px;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    background-color: #fafafa;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body > :first-child {
    height: 100%;
}

body > div > :last-child {
    height: 100%;
}

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

.store-image {
    width: 40px;
    height: 40px;
    background-color: grey;
    margin: 10px;
}

.store-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav > :last-child {
    display: flex;
    margin-right: 20px;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: grey;
}

.profile-image:hover {
    cursor: pointer;
    background-color: blue;
}

.profile-image:active {
    cursor: pointer;
    background-color: green;
}

.nav-user {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
    color: black;
}

.container > :last-child {
    width: 100%;
    height: calc(100% - var(--navbar-height));

    display: flex;
    flex-direction: row;
}

aside {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: var(--sidebar-width);
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    z-index: 9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

aside > :last-child {
    width: 100%;
}

main {
    height: 100%;
    background-color: #fafafa;
    width: calc(100% - var(--sidebar-width));
}

.squares {
    width: 300px;
    height: 100px;
    background: white;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.squares-title {
    margin: 10px;
    color: black;
}

.squares-info {
    display: flex;
    justify-content: flex-end;
    margin: 10px;
}

/* .top-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
} */
