.tt-comment-wrapper {
  width: 450px;
  background-color: #121212;
  color: #f1f1f2;
  font-family: 'SofiaPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding: 16px;
  display: flex;
  gap: 12px;
  border-radius: 8px;
  box-sizing: border-box;
}

.tt-comment-wrapper.light-theme {
  background-color: #ffffff;
  color: #161823;
}

.tt-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #2f2f2f;
}

.tt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-comment-body {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tt-username {
  font-size: 13px;
  font-weight: 600;
  color: #f1f1f2;
  margin-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tt-comment-wrapper.light-theme .tt-username {
  color: #161823;
}

.tt-badge-creator {
  background-color: #fe2c55;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 2px;
  line-height: 12px;
}

.tt-badge-verified {
  width: 14px;
  height: 14px;
  fill: #20d5ec;
  display: inline-flex;
}

.tt-text {
  word-break: break-word;
  white-space: pre-wrap;
  color: rgba(241, 241, 242, 0.9);
}

.tt-comment-wrapper.light-theme .tt-text {
  color: rgba(22, 24, 35, 0.9);
}

.tt-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(241, 241, 242, 0.5);
}

.tt-comment-wrapper.light-theme .tt-footer {
  color: rgba(22, 24, 35, 0.5);
}

.tt-timestamp {
  white-space: nowrap;
}

.tt-reply-btn {
  background: none;
  border: none;
  color: inherit;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
}

.tt-action-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2px;
  width: 24px;
  color: rgba(241, 241, 242, 0.5);
}

.tt-comment-wrapper.light-theme .tt-action-col {
  color: rgba(22, 24, 35, 0.5);
}

.tt-like-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-like-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.tt-likes-count {
  font-size: 12px;
  margin-top: 2px;
  text-align: center;
}
