#comment-section .score-radio-section {
  display: flex;
  gap: 5px;
}

#comment-section #user-comments-section {
  padding: 25px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
}

#comment-section .user-comment {
  /* width: 100%; */
  text-align: right;
  min-width: 250px;
  max-height: 400px;
  overflow-y: auto;
  max-width: 300px;
  background: #1c1c1c;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  border: 1px solid #f0a928;
  box-shadow: rgb(233 233 233 / 35%) 0px 5px 15px;
}

#comment-section .user-comment .user-name {
  font-weight: 900;
}

#comment-section .user-comment .comment-info-wrapper {
  width: 80%;
  display: flex;
  position: absolute;
  top: -15px;
  /* right: 15px; */
  align-items: center;
  justify-content: space-between;
  /* gap: 10px; */
  color: #FFF;
  max-width: 250px;
}

#comment-section .user-comment .comment-info-wrapper .rating-box {
  display: flex;
  width: 85px;
}

#comment-section .user-comment .user-comment-text {
  margin-top: 40px;
  padding: 10px;
  text-align: right;
  width: 100%;
}

#comment-section .score-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: right;
  gap: 20px;
}