* {
  font-family: var(--tblr-body-font-family, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif);
}

.heading {
  font-weight: 600;
  text-align: left;
  background: transparent;
  margin: 0 0 16px 0;
  color: var(--tblr-body-color, #1e293b);
  padding: 0 0 12px 0;
  border-radius: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #13919B;
}

.heading svg {
  stroke: rgba(98, 105, 118, 0.7);
  color: rgba(98, 105, 118, 0.7);
  margin-right: 8px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.file-browser {
  background: var(--tblr-card-bg, #fff);
  color: var(--tblr-body-color, #1e293b);
  padding: 20px;
  border-radius: 0 0 4px 4px;
}

.file {
  list-style: none;
  cursor: pointer;
  margin: 8px 0;
  color: var(--tblr-body-color, #1e293b);
  transition: color 0.2s;
}

.file:hover {
  color: #13919B;
}

.file > ul {
  display: none;
}

.file:before {
  padding: 0;
  margin: 4px 6px;
  height: 6px;
  width: 6px;
  text-align: center;
  line-height: 6px;
  background: #13919B;
  border-radius: 50%;
  display: inline-block;
  content: "";
  vertical-align: middle;
}

.folder {
  list-style: none;
  cursor: pointer;
  margin: 8px 0;
  color: var(--tblr-body-color, #1e293b);
  font-weight: 500;
  transition: color 0.2s;
}

.folder:hover {
  color: #13919B;
}

.folder > ul {
  display: none;
}

.folder:before {
  padding: 2px 4px;
  height: 16px;
  width: 16px;
  text-align: center;
  line-height: 12px;
  background: #13919B;
  color: #fff;
  border-radius: 2px;
  display: inline-block;
  content: "+";
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 4px;
}

.folder.folder-open > ul {
  display: block;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 2px solid rgba(19, 145, 155, 0.2);
  margin-top: 4px;
}

.folder.folder-open:before {
  content: "−";
}

/*# sourceMappingURL=mindmap.css.map */
