.smt-container {
  max-width: 1100px;
  margin: 20px auto;
  background: white;
  padding: 20px 25px 50px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  position: relative;
  direction: rtl;
  color: #333;
}

.smt-text-content {
  max-height: 100px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.smt-text-content::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 90%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.smt-text-content.expanded::after {
  opacity: 0;
}

.smt-toggle-btn {
  margin-top: 15px;
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: background-color 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.smt-align-left {
    display: block;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.smt-align-center {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
}

.smt-align-right {
    display: block;
    margin-left: auto !important;
    margin-right: 0 !important;
}


/* رنگ دکمه و هاور از داخل کنترل المنتور میاد، پس اینجا رنگ پیش‌فرض رو حذف کردیم */
/* اگر میخوای رنگ پیش‌فرض باشه، می‌تونی این خطوط رو فعال کنی: */
/*
.smt-toggle-btn {
  background-color: #007bff;
}
.smt-toggle-btn:hover {
  background-color: #0056b3;
}
*/
