/* =====================
   COMMENT SECTION V2 - Figma Exact Design
   ===================== */
.comment-section-v2 {
  padding: 24px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.comment-list-v2 {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.comment-item-v2 {
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.comment-item-v2:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.comment-pending {
  opacity: 0.75;
}

.comment-pending-border {
  border-left: 2px solid #E2E6ED;
  padding-left: 12px;
}

.comment-violation-bg {
}

.violation-notice-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.comment-pending-notice {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #9CA4B1;
  margin-bottom: 4px;
}

.violation-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  margin-bottom: 10px;
}

.violation-label-text {
  font-size: 12px;
  font-weight: 500;
  color: #FF5135;
  font-family: inherit;
}

.know-why-link {
  font-size: 12px;
  font-weight: 500;
  color: #2563EB;
  font-family: inherit;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.know-why-link:hover {
  color: #1D4ED8;
}

.violation-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vp-fadeIn 0.15s ease;
}

.violation-popup {
  background: #fff;
  border-radius: 24px;
  width: 90%;
  max-width: 440px;
  padding: 16px 24px 28px;
  animation: vp-scaleIn 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes vp-scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes vp-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.violation-popup-handle {
  width: 56px;
  height: 4px;
  background: #DBE0E8;
  border-radius: 100px;
  margin: 0 auto 16px;
}

.violation-popup-title {
  font-size: 18px;
  font-weight: 600;
  color: #FF5135;
  margin: 0 0 16px;
  text-align: center;
  font-family: inherit;
}

.violation-popup-section {
  margin-bottom: 8px;
}

.violation-popup-section:last-of-type {
  margin-bottom: 12px;
}

.violation-flagged-box {
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 8px;
  overflow: hidden;
}

.violation-flagged-label {
  font-size: 13px;
  font-weight: 500;
  color: #C53030;
  display: block;
  margin-bottom: 4px;
  font-family: inherit;
}

.violation-flagged-text {
  font-size: 15px;
  font-weight: 500;
  color: #E53E3E;
  font-style: italic;
  line-height: 22px;
  font-family: inherit;
  overflow-wrap: break-word;
  word-break: break-word;
  display: block;
}

.violation-reason-row {
  background: #F1F3F6;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.violation-reason-label {
  font-size: 13px;
  font-weight: 500;
  color: #7C8696;
  display: block;
  margin-bottom: 4px;
  font-family: inherit;
}

.violation-reason-text {
  font-size: 15px;
  font-weight: 400;
  color: #0F1B31;
  line-height: 22px;
  font-family: inherit;
}

.violation-popup-note {
  font-size: 13px;
  font-weight: 400;
  color: #7C8696;
  line-height: 18px;
  text-align: center;
  margin: 0 0 20px;
  font-family: inherit;
}

.violation-popup-close-btn {
  width: 100%;
  padding: 14px;
  background: #00B87A;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.violation-popup-close-btn:hover {
  background: #00A06B;
}

.violation-popup-guidelines-btn {
  width: 100%;
  padding: 14px;
  background: #F1F3F6;
  color: #0F1B31;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  margin-top: 12px;
}

.violation-popup-guidelines-btn:hover {
  background: #E5E8ED;
}

.comment-main {
  display: flex;
  gap: 12px;
}

.comment-avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comment-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.comment-avatar-emoji {
  font-size: 18px;
}

.comment-connector-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.comment-connector-svg {
  display: block;
}

.comment-content-col {
  flex: 1;
  min-width: 0;
}

.comment-header-v2 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.comment-author-v2 {
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  color: #0f1b31;
  line-height: 19px;
}

.comment-flag-v2 {
  font-size: 14px;
  line-height: 1;
}

.rank-badge-v2 {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.rank-badge-v2-svg {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.rank-badge-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  border-radius: 10px;
  padding: 0 6px 0 0;
  height: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.rank-badge-v2-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 20px;
}

.best-advice-badge-v2 {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 167, 120, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

.best-advice-badge-v2 span {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  color: #00A778;
}

.comment-dot-v2 {
  color: #4b5563;
  font-size: 10px;
}

.comment-time-v2 {
  font-family: inherit;
  font-size: 12px;
  color: #4b5563;
  line-height: 18px;
}

.comment-text-v2 {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0f1b31;
  margin: 0 0 16px 0;
}

.comment-actions-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vote-pill-group {
  display: flex;
  align-items: center;
}

.vote-pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: #FBFCFD;
  border: 1px solid #E2E6ED;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  height: 30px;
  width: 40px;
  box-sizing: border-box;
}

.vote-pill-btn.vote-pill-up {
  border-radius: 22px 0 0 22px;
  border-right: none;
}

.vote-pill-btn.vote-pill-down {
  border-radius: 0 22px 22px 0;
  border-left: none;
}

.vote-pill-group .vote-pill-btn.vote-pill-up:has(+ .vote-score-pill) {
  border-right: none;
  border-radius: 22px 0 0 22px;
}

.vote-pill-group .vote-score-pill + .vote-pill-btn.vote-pill-down {
  border-left: none;
  border-radius: 0 22px 22px 0;
}

.vote-score-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  min-width: 24px;
  height: 30px;
  padding: 0 4px;
  background: #FBFCFD;
  border-top: 1px solid #E2E6ED;
  border-bottom: 1px solid #E2E6ED;
  border-left: none;
  border-right: none;
  user-select: none;
  transition: color 0.15s ease;
  box-sizing: border-box;
}

.vote-score-pill.vote-score-bounce {
  animation: voteScoreBounce 0.2s ease;
}

.vote-pill-btn:hover {
  background: #F1F3F6;
}

.vote-pill-btn.vote-pill-up.active {
  background: #E6F7F0;
  border-color: #00A778;
}

.vote-pill-btn.vote-pill-up.active:hover {
  background: #D4F0E5;
}

.vote-pill-btn.vote-pill-down.active {
  background: #FFF0ED;
  border-color: #FF5135;
}

.vote-pill-btn.vote-pill-down.active:hover {
  background: #FFE4DF;
}

.vote-pill-btn.vote-bounce {
  animation: voteBounce 0.2s ease;
}

@keyframes voteBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.vote-score-display {
  display: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  min-width: 20px;
  text-align: center;
  padding: 0 2px;
  transition: color 0.15s ease;
  user-select: none;
}

.vote-score-display.vote-score-bounce {
  animation: voteScoreBounce 0.2s ease;
}

@keyframes voteScoreBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.vote-pill-count {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #0F1B31;
}

.text-actions-v2 {
  display: flex;
  align-items: center;
  gap: 2px;
}

.action-text-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 510;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #3D4550;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 21px;
  transition: all 0.15s ease;
}

.action-text-btn:hover {
  background: #F1F3F6;
  color: #0f1b31;
}

.report-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: reportFadeIn 0.2s ease;
}

@keyframes reportFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.report-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  animation: reportScaleIn 0.25s cubic-bezier(0.2, 0.8, 0.4, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

@keyframes reportScaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.report-sheet-handle {
  display: none;
}

.report-modal-title {
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #0F1B31;
  margin: 0 0 16px 0;
  text-align: center;
}

.report-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.report-reason-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid #E9ECF1;
  background: transparent;
  width: 100%;
  text-align: left;
}

.report-reason-item:hover {
  background: #F8F9FB;
  border-color: #D1D5DB;
}

.report-reason-item.selected {
  background: #CCFEED;
  border-color: #00B87A;
}

.report-reason-text {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #0F1B31;
  line-height: 1.4;
}

.report-error {
  font-family: inherit;
  font-size: 13px;
  color: #E53935;
  margin: -4px 0 12px 0;
}

.report-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 100px;
  background: #00B87A;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
}

.report-submit-btn:hover {
  background: #009A66;
}

.report-submit-btn.disabled {
  background: #E9ECF1;
  color: #999;
  cursor: not-allowed;
}

.report-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 8px;
}

.report-success-icon {
  margin-bottom: 16px;
}

.report-success-text {
  font-family: inherit;
  font-size: 14px;
  color: #666670;
  margin: 8px 0 24px 0;
  line-height: 1.6;
}

.report-done-btn {
  padding: 14px 48px;
  border: none;
  border-radius: 100px;
  background: #00B87A;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.report-done-btn:hover {
  background: #009A66;
}

.view-replies-btn {
  font-family: inherit;
  font-size: 13px;
  color: #4b5563;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  text-align: left;
}

.view-replies-btn:hover {
  color: #006ECC;
  text-decoration: underline;
}

/* Replies Container */
.replies-container {
  margin-top: 12px;
  margin-left: 44px;
  margin-bottom: -16px;
}

.reply-item-wrapper {
  position: relative;
  padding-left: 21px;
}

.reply-connector-line {
  display: none;
}

.reply-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
}

.reply-avatar-container {
  flex-shrink: 0;
}

.reply-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reply-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.reply-avatar-emoji {
  font-size: 14px;
}

.reply-content {
  flex: 1;
  min-width: 0;
}

.reply-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.reply-author {
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: #0f1b31;
}

.reply-flag {
  font-size: 12px;
}

.reply-dot {
  color: #4b5563;
  font-size: 10px;
}

.reply-time {
  font-family: inherit;
  font-size: 12px;
  color: #4b5563;
}

.reply-text {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: #0f1b31;
  margin: 0 0 8px 0;
}

.reply-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reply-actions .action-btn {
  font-family: inherit;
  font-size: 12px;
  color: #4b5563;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.reply-actions .action-btn:hover {
  color: #0f1b31;
}

/* Private Advice Input - Large Text Area */
.private-advice-input-container {
  padding: 24px;
  margin-top: 24px;
}

.private-advice-input-box {
  position: relative;
  background: #F1F3F6;
  border-radius: 12px;
  padding: 16px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}

.private-advice-textarea {
  flex: 1;
  width: 100%;
  min-height: 80px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: #0f1b31;
  resize: none;
  outline: none;
}

.private-advice-textarea::placeholder {
  color: #4b5563;
}

.char-count {
  position: absolute;
  right: 16px;
  bottom: 48px;
  font-size: 12px;
  color: #9CA3AF;
}

.private-advice-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.send-btn-outline {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid #D1D5DB;
  border-radius: 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #0f1b31;
  cursor: pointer;
  transition: background 0.2s;
}

.send-btn-outline:hover {
  background: #F3F4F6;
}

/* Fixed Comment Input Bar - Sticks to bottom of comment section */
.fixed-comment-input-bar {
  position: sticky;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  background: #FFFFFF;
  border-top: 1px solid #E2E6ED;
  z-index: 100;
  margin-top: 48px;
  box-sizing: border-box;
  height: 80px;
}

.comment-input-box-v2 {
  flex: 1;
  display: flex;
  align-items: center;
  background: #F1F3F6;
  border-radius: 50px;
  padding: 0 16px;
  gap: 6px;
  height: 48px;
}

.comment-input-v2 {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: #0F1B31;
  letter-spacing: -0.02em;
  line-height: 130%;
}

.comment-input-v2::placeholder {
  color: #666670;
}

.emoji-btn-v2 {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.post-btn-pill {
  background: transparent;
  color: #0F1B31;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.02em;
  padding: 0;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease;
  flex-shrink: 0;
}

.post-btn-pill:hover {
  color: #006ECC;
}

/* Private Advice Input - Different design for private posts */
.comment-section-v2.private-post {
  padding-bottom: 24px;
}

.private-advice-input-container {
  padding: 0;
  margin-top: 16px;
}

.private-advice-input-box {
  position: relative;
  background: #F1F3F6;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 16px 20px 28px 20px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.private-advice-textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}

.private-advice-textarea::placeholder {
  color: #4b5563;
}

.char-count {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: inherit;
  font-size: 12px;
  color: #999999;
}

.private-advice-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.send-btn-dark {
  background: #0F1B31;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 24px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.send-btn-dark:hover {
  background: #1a2a47;
}

/* Reply Input Styles */
.reply-input-container {
  margin-top: 8px;
  margin-bottom: 4px;
}

.reply-input-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F1F3F6;
  border-radius: 24px;
  padding: 4px 4px 4px 16px;
}

.reply-input-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  color: #0F1B31;
  line-height: 130%;
  min-width: 0;
}

.reply-input-field::placeholder {
  color: #94A3B8;
}

.reply-input-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.reply-cancel-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 12px;
  color: #94A3B8;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.15s ease;
}

.reply-cancel-btn:hover {
  color: #666670;
}

.reply-submit-btn {
  background: #00A778;
  color: white;
  border: none;
  border-radius: 20px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.reply-submit-btn:hover {
  background: #008F66;
}

.reply-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.reply-submit-btn.sent {
  background: #00A778;
}

@keyframes replySlideIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
  }
  50% {
    max-height: 200px;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
  }
}

.reply-item-wrapper.reply-new {
  animation: replySlideIn 0.35s ease-out forwards;
  overflow: hidden;
}

/* Comment Input Error */
.comment-input-error {
  font-family: inherit;
  font-size: 12px;
  color: #E53935;
  margin: 4px 0 0;
  padding: 0 16px;
}

/* Post/Send button states */
.post-btn-pill:disabled,
.send-btn-outline:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.post-btn-pill.sent {
  color: #00A778;
}

.send-btn-outline.sent {
  color: #00A778;
  border-color: #00A778;
}

/* Restriction Modal */
.restriction-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.restriction-modal {
  background: white;
  border-radius: 20px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.restriction-modal-icon {
  margin-bottom: 16px;
}

.restriction-modal-title {
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  color: #0F1B31;
  margin: 0 0 8px;
}

.restriction-modal-text {
  font-family: inherit;
  font-size: 14px;
  color: #666670;
  line-height: 1.5;
  margin: 0 0 16px;
}

.restriction-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: #FFF3E0;
  border-radius: 8px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 13px;
  color: #E65100;
  font-weight: 500;
}

.restriction-violations {
  text-align: left;
  margin-bottom: 16px;
}

.restriction-violations-title {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.restriction-violation-item {
  padding: 8px 12px;
  background: #FFF8F8;
  border-radius: 8px;
  margin-bottom: 4px;
}

.violation-reason {
  font-family: inherit;
  font-size: 13px;
  color: #E53935;
}

.restriction-modal-actions {
  margin-top: 8px;
}

.restriction-ok-btn {
  width: 100%;
  padding: 14px;
  background: #0F1B31;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.restriction-ok-btn:hover {
  background: #1a2a47;
}

[dir="rtl"] .comment-body-v2 {
  border-left: none;
  border-right: 2px solid #E2E6ED;
  padding-left: 0;
  padding-right: 12px;
}

[dir="rtl"] .replies-container {
  margin-left: 0;
  margin-right: 44px;
}

[dir="rtl"] .reply-item-wrapper {
  padding-left: 0;
  padding-right: 21px;
}

[dir="rtl"] .view-replies-btn {
  text-align: right;
}

[dir="rtl"] .comment-connector-svg {
  transform: scaleX(-1);
}

