h1, h2, h3, h4, h5, h6 {
	border-bottom: var(--pico-border-width) solid var(--pico-muted-border-color);
}

.row {
  display: flex;
  gap: var(--pico-block-spacing-horizontal);
}

.column1 {
  flex: 30%;
}

.column2 {
  flex: 70%;
}
@media screen and (max-width: 1024px) {
  .row {
    flex-direction: column;
  }
  .column1 {
    width: 100%;
  }
  .column2 {
    width: 100%;
  }
}

.flex-spacing {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

table.bordered {
  border-radius: var(--pico-border-radius);
  background: var(--pico-card-background-color);
  box-shadow: var(--pico-card-box-shadow);
}

table.bordered thead th {
  border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
  border-top-right-radius: var(--pico-border-radius);
  border-top-left-radius: var(--pico-border-radius);
  background-color: var(--pico-card-sectioning-background-color);
}

table.bordered tfoot th {
  border-top: var(--pico-border-width) solid var(--pico-card-border-color);
  border-bottom-right-radius: var(--pico-border-radius);
  border-bottom-left-radius: var(--pico-border-radius);
  padding: calc(var(--pico-block-spacing-vertical) * 0.66)
    var(--pico-block-spacing-horizontal);
  background-color: var(--pico-card-sectioning-background-color);
}

table.striped tbody tr:nth-child(odd) th,
table.striped tbody tr:nth-child(odd) td {
  background-color: var(--pico-background-color);
}

table.striped tbody tr:nth-child(even) th,
table.striped tbody tr:nth-child(even) td {
  background-color: var(--pico-table-row-stripped-background-color);
}

.filelist {
  padding: 0;
}

.filelist-item {
  display: flex;
  align-items: center;
}

.filelist-item::before {
  content: " ";
  display: inline-block;
  width: 24px;
  height: 24px;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--pico-color);
  margin-right: 4px;
}
.icon-back::before {
  mask-image: url(/assets/back.svg);
}
.icon-folder::before {
  mask-image: url(/assets/folder.svg);
}
.icon-page::before {
  mask-image: url(/assets/page.svg);
}
.icon-file::before {
  mask-image: url(/assets/file.svg);
}
