/* جعبه متن در حالت بسته */
.rmtfr-box {
  max-height: 120px;     /* ارتفاع اولیه */
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
  direction: rtl;          /* راست‌چین کردن متن */
  text-align: right;
}

/* جعبه متن در حالت باز */
.rmtfr-box.open {
  max-height: none;        /* نمایش کامل محتوا */
}

/* دکمه نمایش بیشتر */
.rmtfr-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  cursor: pointer;
  color: #929292;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  flex-direction: row-reverse;  /* تغییر جهت آیکون و متن */
}

/* آیکون فلش */
.rmtfr-toggle i {
  font-size: 16px;
}
