
  .adminList > li {
    padding: 0.5em 0em;
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    
    border-bottom: 0.05em solid #ced4da;
    
    word-break: break-all;
  }
  
  .adminList > li > div:first-child {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .adminList > li a {
    color: #3e3e3e;
  }
  
  .adminList > li:first-of-type {
    padding-top: 0em;
  }
  
  .adminList > li:last-of-type {
    padding-bottom: 0em;
    border-bottom: none;
  }

  .manageListItem {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
  }
  
  .manageListItem > * {
    background-color: transparent;
  }
  
  .manageListItem a {
    display: inline-block;
    margin-left: 0.5em;
    text-decoration: none;
  }
  
  .manageListItem svg {
    display: block;
  }
  
  .deleteBtn:hover {
    color: #1111ad;
  }

  @media screen and (min-width: 500px) {
    
    .adminList > li {
      flex-flow: row nowrap;
      justify-content: space-between;
      align-items: center;
    }
  }
