@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#home {
    background-color: #000a;
    border-color: #555;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 5px 5px #000a;
    cursor: pointer;
    fill: #fff;
    height: 30px;
    right: 1rem;
    padding: 5px;
    position: fixed;
    bottom: 1rem;
    width: 30px;
    z-index: 99;
}

body {
    background-color: #222;
    color: #fff;
    display: flex;
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    overflow: hidden;
    place-content: center;
    place-items: center;
}

header {
  background-color: #3e57db;
  padding: 30px 20px;
}

header input {
  background-color: #0004;
  border: 0;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  width: 100%;
}

header input::placeholder {
  color: #bbb;
}

header input:focus {
  background-color: #0006;
  outline: none;
}

.container {
  border-radius: 5px;
  box-shadow: 3px 3px 10px #0004;
  overflow: hidden;
  width: 300px;
}

.subtitle {
  display: inline-block;
  margin: 5px 0 20px;
  opacity: 0.8;
}

.user-list {
  background-color: #333;
  list-style-type: none;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-color: #777 #333;
  scrollbar-width: thin;
}

.user-list li {
  display: flex;
  padding: 20px;
}

.user-list li:not(:last-of-type) {
  border-bottom-color: #777;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

/*.user-list li+li {
  border-top-color: #777;
  border-top-style: solid;
  border-top-width: 1px;
}*/

.user-list li.hide {
  display: none;
}

.user-list img {
  border-radius: 50%;
  height: 50px;
  object-fit: cover;
  width: 50px;
}

.user-list .user-info {
  margin-left: 10px;
}

.user-list .user-info h4 {
  margin: 0 0 10px;
}

.user-list .user-info p {
  font-size: 12px;
}
