.pct-categories
{
    list-style: none;
    margin: 0;
    padding: 0;
	color: #fff;
	font-size: 90%;
	
}

.pct-category {
    margin-bottom: 5px;
	border-bottom: 1px solid #fff;
	padding-bottom: 4px;
}

.pct-toggle {
    cursor: pointer;
    margin-right: 5px;
    font-weight: bold;
	background-color: #000;
	border-radius: 6px;
	padding: 4px 8px;
	width: 12px;
	height: 12px;
	margin-left: -32px;
	color: #FF914C;
}

.pct-category a {
    color:#fff;
	
}


.pct-subcategories {
    list-style: none;
	margin-left: 15px;
    padding: 0;
	color: #fff;
	font-size: 85%;
}

.pct-category li {
	border-left: 1px solid #fff;
	padding-left: 6px;
	border-bottom: 0px solid #fff;
	 margin-bottom: 0px;
}


/* Exemple: transició per als enllaços dins de la llista */
.pct-categories li a {
    display: inline-block; /* o block segons necessiti */
    transition: all 0.4s ease; /* ajusta la durada i tipus de transició si cal */
}

/* Exemple d'estil hover, on canvien el color i el fons */
.pct-categories li a:hover {
    color: #000000;             /* nou color del text en hover */
    
}





