.top_bar {
    width: 90%;
    margin: 1rem;
    display: flex;
    flex-direction: row;
}

.top_bar button {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 150px;
    height: 3rem;
}

.top_bar button .text {
    margin-left: 5px;
}

.user_list::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.user_list {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.user_list {
    width: 90%;
    height: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    overflow-y: scroll;
    /*padding-top: 0;*/
}

.userList_row {
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
}

.user_list .userList_row:first-child {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}


.userList_row div {
    margin: auto;
}

.userList_row .id{
    width: 5%
}
.userList_row .name{
    width: 15%
}
.userList_row .mail {
    display: flex;
    width: 20%
}
.userList_row .status {
    width: 15%;
    display: flex;
    flex-direction: row;
}
.userList_row .status span {
    aspect-ratio: 1/1;
}
.userList_row .created {
    display: flex;
    width: 15%;
}
.userList_row .lastChange {
    display: flex;
    width: 15%;
}
.userList_row .actions {
    width: 15%;
    display: flex;
    flex-direction: row;
}

.userList_row .actions button {
    aspect-ratio: 1/1;
}

@media screen and (max-width: 999px) {
    .userList_row .created, .userList_row .lastChange, .userList_row .mail {
        display: none;
    }

}
