.avatar-list-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 10px;
}

.avatar-list {
  display: flex;
  align-items: center;
}

.like-avatar {
  position: relative;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  margin-right: 10px;
}

.modal-body .like-avatar {
  width: 40px;
}

.like-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.likes-list .badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3CAF65;
}

.modal-body .badge {
  width: 20px;
}

.likes-list .badge img {
  height: auto;
  width: 25px;
  border-radius: unset;
}

.modal-body .badge img {
  width: 10px;
}

.extra-count {
  width: 60px;
  aspect-ratio: 1/1;
  background-color: #3578E5;
  color: white;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.extra-count:hover {
  background-color: #3CAF65;
  color: white;
}

.modal-like {
  border-bottom: 1px solid #EEE;
  padding: 5px 0;
  padding-bottom: 10px;
}
