.user_list_row {
    width: fit-content;
    height: fit-content;
    display: flex;
    background: rgb(255 255 255);
    box-shadow: 4px 4px 10px 2px rgb(220 220 220);
    margin: 20px;
    padding: 10px;
    /* cursor: pointer; */
    position: relative;
}

.user_list_row:hover {
    box-shadow: inset 0px 0px 3px 1px rgb(15 106 196);
}

#user_profile_popup_window {
    position: fixed;
    inset: 0;
    background-color: rgb(0 0 0 / 79%);
    overflow-y: scroll;
    padding-top: 42px;
    z-index: 1;
}

.add_or_view_user_profile {
    background: #f9f9f9fc;
    position: absolute;
    height: 550px;
    width: 860px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 14px 25px 14px 25px;
    box-shadow: 0 0 7px 0.3px #0c0b0b;
    font-size: var(--fontSize);
}

#checkAllButton {
    position: absolute;
    right: 27px;
    top: 92px;
    background: blue;
    padding: 0 4px;
    font-size: 13px;
    border-radius: 2px;
    cursor: pointer;
    color: white;
}

.add_or_view_user_profile input,
textarea {
    width: 400px;
    padding: 6px;
    border: 1px solid #00000026;
}

.up_user_menu_permissions {
    display: flex;
    flex-wrap: wrap;
    width: 430px;
    height: 215px;
    border: 1px solid #0000001f;
    overflow-x: scroll;
    background: white;
}

.up_user_menu_permissions input {
    width: fit-content;
    cursor: pointer;
}

.up_user_menu_permissions label {
    width: 80%;
}

.up_user_roles_permissions {
    width: 430px;
    border: 1px solid #0000001f;
    margin-top: 4px;
}

.up_user_roles_permissions input {
    width: fit-content;
    cursor: pointer;
}

.up_user_roles_permissions label {
    width: 50%;
}