#credite{
    cursor: pointer;
}
ul.folder-list {
	font-size: 14px;
    list-style-type: none;
	padding:0px !important;
	margin-left: -10px;
}

ul.folder-list .folder {
    cursor: pointer;
	padding: 0 0 0 15px !important;
}
/* Icon pentru foldere - Folosește un folder Font Awesome */
.folder::before {
    content: '\f07b'; /* Codul pentru iconul de folder din Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 1px;
	color: orange;
}

/* Icon pentru fișiere .docx - Folosește un icon Word din Font Awesome */
.template::before {
    content: '\f1c2'; /* Codul pentru iconul Word din Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 1px;
	color: blue;
}
.template {
    padding-left: 15px; /* Indentare pentru fișiere */
}
.template:hover {
    color: blue;      /* Schimbă culoarea textului la hover */
}