.basic-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center; 
}

.basic-container .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: block;
  z-index: 1;
}

.basic-container .frame-avatar {
  position: absolute;
  inset: 0; 
  left: 22px!important;
  top: 22px!important;
  transform: translate(-50%, -50%);
  width: 90px;  
  height: 90px;
  pointer-events: none;
  z-index: 2;
}
.comment-bg:before {
    content: '';
    position: absolute;
    top:50%;
    left: -15px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #292929;
    transform: translatey(-50%) rotate(-90deg);
    
}

.users-comment {
  display: flex;
  align-items: center;
  gap: 10px; 
  position: relative;
}

.basic-container,
.dong-hanh-container {
  position: relative;
  flex-shrink: 0;
}

.avatar,
.donghanh-image {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.frame-avatar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  pointer-events: none;
}

.users-comment .info-container {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  line-height: 1.3;
}

.users-comment .level {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.content-cmt {
    font-size: 16px;
}
.users-comment .username {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: inherit;
}

.users-comment .username a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}