* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

.body {
  display: flex;
  align-content: flex-start;
  justify-content: space-evenly;
  padding-top: 4rem;
}

.task-container {
  overflow: auto;
  display: none;
  padding-top: 10px;
  max-height: 85vh;
  padding: 0 1rem;
  width: 50%;
}

.task-subcontainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.task {
  padding: 10px;
  border: 2px solid black;
  border-radius: 5px;
  height: max-content;
  width: 100%;
}

.users-container {
  margin: 10px;
  border: 2px solid black;
  border-radius: 5px;
  height: 80vh;
  overflow-y: scroll;
  min-width: 260px;
}

.users-list {
  overflow: hidden;
}

.users {
  margin: 10px;
  padding: 0 5px;
  border: 2px solid black;
  border-radius: 5px;
  height: 2rem;
  width: 15rem;
  align-items: center;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background: #8abbcd;
}

.users:hover {
  background: #5992a7;
}

.users.dragging {
  background: transparent;
  color: transparent;
  border: transparent;
}

.users-online {
  width: 10px;
  height: 10px;
  background-color: rgb(58, 247, 58);
  border-radius: 50%;
}

.users-online-hidden {
  display: none;
}

.users.scale {
  transform: scale(1.1);
}

.users-search {
  margin: 10px;
  height: 4rem;
  width: 15rem;
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  align-items: center;
}

.users-search-input {
  height: 2rem;
  width: 15rem;
}

.users-profile {
  border-radius: 50%;
  width: 25px;
  margin-right: 5px;
}

.users-profile-and-name {
  display: flex;
  align-items: center;
}

footer {
  display: block;
  width: 100%;
  padding: 8px;
}

footer .info-repo {
  font-weight: 100;
  text-align: center;
}

/* MEDIA QUERY */

@media only screen and (max-width: 900px) {
  .body {
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 2rem;
    gap: 3rem;
  }
  .task-container {
    width: 70%;
    margin-bottom: 3rem;
  }
  .task-container-title {
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .task-container {
    width: 85%;
    padding: 0;
  }
}
@media only screen and (max-width: 400px) {
  .task-container {
    width: 95%;
    padding: 0;
  }
}
