#avatarList {
  list-style-type: none;
  padding: 0;
  justify-content: center;
}

#avatarListheader {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bolder;
  color: #c59655;
}

#avatarListheaderP {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: lighter;
  color: white;
}

.avatar-name {
  font-size: 1.2em;
  color: #c59655;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.avatar-list-container {
  max-height: 200px;

}


.avatar-item {
  margin: 10px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center; 
}


.avatar-image {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.avatar-selected-indicator {
  display: none;
  height: 10px;
  width: 10px;
  background-color: green;
  border-radius: 50%;
  margin-right: 5px;
}

.avatar-item.selected .avatar-selected-indicator {
  display: inline-block;
}