* {
    -webkit-tap-highlight-color: transparent;
    transition: 0.4s;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 16px;
    text-align: center;
    border-radius: 6px;
    min-height: 70vh;
    overflow: hidden;
    max-width: 100vh;
}

body {
    margin: 0;
    padding: 0 5px;
    padding-top: 60px;
    background-color: #000;
    height: 90vh;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    color: #fff;

}

.app-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
    position: relative;
    justify-content: space-between;
    padding: 10px 10px;
    border-radius: 8px;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,0.1);
}

.logo {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

.menu-button {
    background: none;
    border: none;
    color: #fff;
    padding: 5px;
    font-size: 1.5em;
}

#nav {
    overflow-y:scroll;
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100%;
    transition: left 0.3s ease;
    padding-top: 60px;
    z-index: 1000;

    background-color: rgba(0,0,0);
}
#nav.opened {
    left: 0;
}

.dropdown-menu {
    
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    padding-left:20vw;
    text-align: left;
    padding-bottom: 100px;
}
.dropdown-category {
    margin-bottom: 5px;
}
.category-header {
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}
.category-header::before {
    content:'-';
    margin-right:5px;
}

.dropdown-content {
    padding-left: 20px;
}
.dropdown-item {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #fff;
}

.selected-category {
    
}
.selected-category::before {
    content:'+';
    margin-right:5px;
    text-decoration: none;
}

.table-wrapper {
    padding: 10px;
    overflow: auto;
}
.user-table {
    border-collapse: collapse;
}
.table-header {
    background-color: #000;
}
.table-cell {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.table-row:nth-child(even) {
    background-color: #333;
}