/* Remove default bullets */
ul,
#folderTree {
	list-style-type: none;
}

#folderTree {
	margin: 0;
	padding: 0;
}

.caret {
	cursor: pointer;
	user-select: none;
}

.caret::before {
	content: "\25B6";
	color: black;
	display: inline-block;
	margin-right: 6px;
}

.caret-down::before {
	transform: rotate(90deg);
}

.nested {
	display: none;
}

.active {
	display: block;
}

/* GoBack button */
.previous {
	background-color: #f1f1f1;
	color: black;
	text-decoration: none;
	display: inline-block;
	padding: 8px 16px;
	margin-bottom: 1%;
}

.previous:hover {
  background-color: #ddd;
  color: black;
}

/*Action button*/
.button {
  background-color: #ddd;
  border: none;
  color: black;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
}

.button:hover {
  background-color: #f1f1f1;
}

.badge {
  background-color: red;
  color: white;
  padding: 4px 8px;
  text-align: center;
  border-radius: 5px;
}