.users-content-container {
    border-top: 1px solid #0003;
}

.users-list, .project-variables {
    list-style-type: none;
    padding: 0;
    margin-top: 32px;
}

.project-variables {
    margin-top: 0px;
}

.users-list .user-item, .project-variable {
    min-height: 50px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #0002;
    border-bottom: 1px solid #0003;
}

.project-variable {
    padding: 0;
}

.users-list .user-item:nth-child(2n-1), .project-variables .project-variable:nth-child(2n-1) {
    background: #0001;
}

.users-list .user-item:last-child, .project-variables .project-variable:last-child {
    border-bottom: 0;
}

.header-bold {
    font-weight: bold;
}

.project-variables .project-variable.complex {
    display:block;
    height: auto;
    margin: 0 -12px;
}

.project-variables .project-variable.complex .top {
    min-height: 50px;
    margin: 0!important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.variable-name, .value-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

a {
    text-decoration: none;
}