.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.list {
  width: 40%;
  text-align: left;
}

@media (max-width: 900px) {
  .list {
    width: 90%;
  }
}

.list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list ul li > ul {
  padding-left: 25px;
}

.list li {
  padding: 5px 8px;
  cursor: pointer;
}

.list li > span {
  padding: 5px 8px;
  border-radius: 5px;
}

.list li:hover > span {
  background-color: rgba(79, 34, 92, 0.7);
}

.list li .empty {
  margin: 5px;
  padding-left: 40px;
  color: rgb(131, 58, 152);
}

.list li span::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  margin-bottom: -6px;
  background-size: contain;
  background-repeat: no-repeat;
}

.list li:has(> .show) span::before {
  background-image: url("folder_open.png");
}

.list li:has(> .hidden) span::before {
  background-image: url("folder_close.png");
}

.list .show {
  display: block;
}

.list .hidden {
  display: none;
}

.list .object {
  padding-left: 15px;
  color: rgb(235, 235, 235);
  text-decoration: none;
}

.list .object:hover {
  color: rgb(131, 58, 152);
  text-decoration: underline;
}
