/* mct-style.css */
.mct-tree,
.mct-tree ul {
  list-style: none;
  margin: 0;
  padding-left: 1em;
  font-size: 1em;
}
.mct-tree .mct-toggle {
  cursor: pointer;
  user-select: none;
  margin-right: 0.5em;
}
.mct-tree ul {
  display: none;
}
.mct-tree li.open > ul {
  display: block;
  margin-top: 0.7em;
}
/* indent files so their text lines up under folder names */
.mct-file {
    padding-left: 1.3em;
  }
  
/* style the date next to the title */
.mct-file .mct-file-date {
margin-left: 0.5em;
font-size: 0.9em;
color: #666;
}

/* if any stray <img> tags remain, hide them */
.mct-file img {
display: none;
}

.mct-folder-name {
    cursor: pointer;
  }  