:root {
    --page-padding: 5vw;
    --table-padding-horizontal: 5vw;
}

html {
    font-size: 3vw;
}

body {
    margin-left: 0;
}

nav {
    position: fixed;
    width: 100%;
    padding: 0 10vw var(--header-padding-top);
}
body:not(.showMenu) nav {
    display: none;
}
nav #menu .menu-item {
    font-size: 1.6rem;
}

.sidebar {
    display: none;
}

#mobile-menu {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    left: 0;
    margin: var(--page-padding);
    height: 2rem;
    width: 2rem;
    padding: 0.25rem 0;
    color: var(--color-black);
}
#mobile-menu .line {
    width: 100%;
    height: 2px;
    background: currentColor;
}

body.showMenu #mobile-menu {
    color: var(--color-white);
}


.invoice-table .col-nr,
.invoice-table .col-client,
.invoice-table .col-date,
.invoice-table .col-status {
    display: none;
}

.project-table .col-client,
.project-table .col-hours,
.project-table .col-user,
.project-table .col-date,
.project-table .col-status {
    display: none;
}

.work-table .col-project,
.work-table .col-user,
.work-table .col-sum,
.work-table .col-date {
    display: none;
}
.work-table th.col-category {
    font-size: 0;
}