.tj_container *{
	position: relative;
	box-sizing: border-box;
}

.tj_container ul{
	padding-left: 2em;
	list-style-type: none;
}

.tj_container > ul:first-of-type{
	padding: 0;
}

.tj_container li span.tj_description {
	cursor: pointer;
	padding: 2px 5px;
	display: block;
	border-radius: 2px;
	white-space: nowrap; /* Prevent text wrapping */

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
}

.tj_container li span.tj_description:hover{
	background-color: #ccc;
}

.tj_container li span.tj_mod_icon, .tj_container li span.tj_icon {
	margin-right: 0.5em;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	color: #FFCC33 !important; /* Windows Explorer-like yellow */
}

.tj_container li span.tj_mod_icon, .tj_container li span.tj_mod_icon *{
	width: 1em;
}

.tj_container li span.tj_description.tj_leaf{
	margin-left: 1.5em;
}

.tj_container li[disabled=""]{
	color: #b5b5b5;
}

.tj_container li[disabled=""]:hover span.tj_description{
	cursor: default;
	background-color: inherit;
}

.tj_container span.tj_description.selected{
	background-color: #2b2b2b;
	color: #fff;
}

.tj_container span.tj_description.selected:hover{
	background-color: #606060;
}

/* Target specific icons based on your needs */
.tj_container li.folder > span.tj_mod_icon::before {
	content: "\f07c"; /* Font Awesome for folder icon (adjust accordingly) */
	color: #FFCC33 !important; /* Windows Explorer-style yellow */
	font-family: "Font Awesome 5 Free"; /* Ensure correct font */
	font-weight: 900; /* Required for solid icons */
}

.tj_container li.file > span.tj_mod_icon {
	content: "\f15c"; /* Font Awesome for file icon (adjust accordingly) */
}


/* Optional: Apply a slightly darker color when selected */
.tj_container li.folder.selected > span.tj_mod_icon::before {
	color: #E6B800 !important; /* Slightly darker yellow */
	font-family: "Font Awesome 5 Free"; /* Ensure correct font */
	font-weight: 900; /* Required for solid icons */
}