.content-box-toggle {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cbt-description {
  max-height: 150px;
  overflow: hidden;
  transition: max-height .3s ease;
  margin-bottom: 20px; /* فاصله با دکمه */
}

.cbt-toggle {
  background: none; /* بدون بک‌گراند */
  border: none;
  color: #0073e6; /* رنگ اولیه */
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto; /* وسط چین کردن */
  padding-top: 10px;
  border-top: 1px solid #ddd; /* خط بالای دکمه */
  transition: color .3s ease;
}

.cbt-toggle:hover {
  color: #ff6600; /* تغییر رنگ هنگام هاور */
}

.cbt-toggle .cbt-icon {
  transition: transform .3s ease;
}

.cbt-toggle.active .cbt-icon {
  transform: rotate(180deg);
}
