/* ساختار اصلی درخت */
.cptree, .posts {
  list-style: none;
  margin: 0;
  padding: 0;
  direction: rtl;
}

/* هر سطح از درخت */
.cptree li {
  position: relative;
  padding-right: 8px;
  margin: 2px 0;
}

/* خط راهنما فقط برای سطح فعلی */
.cptree li::before {
  content: "";
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  border-right: 1px dashed #ccc;
}

/* آیکون و عنوان فولدر */
.cptree .toggle {
  cursor: pointer;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

/* فولدرهای باز */
.cptree li.open > .toggle {
  color: #1976d2;
}

/* تو رفتگی سطح‌های بعدی */
.cptree ul {
  margin-right: 0;
  padding-right: 10px;
}

/* زیر‌دسته‌ها علامت ویژه دارند */

/* پست‌ها */
.cptree .posts li {
  margin-right: 10px;
  font-weight: 400;
  color: #444;
}

/* لینک‌ها */
.cptree .posts a {
  text-decoration: none;
  color: #444;
  font-weight: 400;
  font-size: 12px;


}
.cptree .posts a:hover {
  color: #000;
  text-decoration: underline;
}

/* محدودیت ارتفاع زیرمجموعه‌ها */

.cptree li.open > ul::-webkit-scrollbar {
  width: 6px;
}
.cptree li.open > ul::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 3px;
}
.cptree li.open > ul::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* پیش‌فرض همه بسته */
.cptree ul {
  display: none;
}
.cptree li.open > ul {
  display: block;
}

/* افکت hover فولدر */
.cptree .toggle:hover {
  color: #d32f2f;
}
