.avatar img{
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.img-avatar i{
  font-size: 10px;
  background-color: black;
  border-radius: 50%;
  padding: 5px;
  position: absolute;
  left: 50px;
  bottom: 0;
  border: 0.5px solid white;
  cursor: pointer;
}
.picked{
  font-weight: 800;
}
.order-picked{
  border-bottom: 1px solid gray;
  color: black;
}
.upload-container {
  position: relative;
  display: inline-block;
}

#file-input {
  display: none;
}

.upload-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}

.upload-button .plus-icon {
  font-size: 3em;
  color: #adb0b3;
}

.upload-button .upload-text {
  display: block;
  margin-top: 10px;
  font-size: 1em;
  color: #333;
}


.rating {
  display: flex;
  direction: row;
}

.star {
  font-size: 1.2em;
  color: gray;
  cursor: pointer;
  transition: color 0.3s;
}

.star.selected {
  color: gold;
}
