  .chat {
    width: 97%;
    height: 600px;
    color: black;
    background-color: rgb(240, 240, 240);
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 20px;
    font-size: 10pt;
    display: flex;
    flex-direction: column;
  }

  .chat span#title {
    font-size: 12pt;
    flex-shrink: 0;
  }

  .comments-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
  }

  .comments-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
  }

  .comment {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .img-profile {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    text-transform: uppercase;
  }

  .comment-text {
    font-weight: 400;
    color: rgb(94, 94, 94);
    line-height: 1.4;
    word-break: break-word;
  }

  .comment-name {
    font-weight: 700;
    color: black;
    margin-right: 5px;
  }

  .comments-scroll::-webkit-scrollbar {
    width: 6px;
  }

  .comments-scroll::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 10px;
  }

  .comments-scroll::-webkit-scrollbar-track {
    background: transparent;
  }