.right-section {
  flex: 5;
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
}

.text-input {
  font-size: 15px;;
  padding: 16px 15px;
  margin: 20px 0;
  border: none;
  border-radius: 6px;
  background-color: rgb(230,230,230);
  width: 80%;
}

.avis-input {
  font-size: 15px;
  font-family: Roboto, Arial;
  resize: none;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  background-color: rgb(230,230,230);
  height: 20vh;
  width: 80%;
}

.text-input:focus {
  outline: none;
  background-color: rgb(215, 215, 215);
}

.avis-input:hover {
  outline: none;
}

.avis-input::-webkit-scrollbar {
  width: 10px;
}
.avis-input::-webkit-scrollbar-thumb  {
  background: gray;
  cursor: pointer;
}

.avis-input:focus {
  outline: none;
  background-color: rgb(215, 215, 215);
}

.star-rating {
  width: 83%;
  align-self: left;
  margin: 20px 0;
}

.star-rating p {
  margin: 7px;
}

.star-holder {
  display: flex;
}

.star {
  background-color: transparent;
  color: #ff9800;
  padding: 0;
  margin: 0;
  font-size: 40px;
  border: none;
  cursor: pointer;
}

#star-count {
  border: none;
  background: transparent;
}

#star-count:focus {
  outline: none;
}

.envoyer-avis {
  font-size: 15px;
  margin: 20px 0;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: bold;
  color: white;
  background-color: rgb(28, 78, 216);
  border: 2px solid rgb(28, 78, 216);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.envoyer-avis:hover {
  background-color: white;
  color: rgb(28, 78, 216);
}

.whitearea {
  height: 1vh;
}
