body {
  margin: 0;
  background-color: #111111;
  color: #fff;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
}

.topbar {
  background-color: #111111;
  padding: 10px 15px 17px;
  font-size: 15px;
  color: #fff;
}

.layout {
  display: flex;
  height: calc(100vh - 48px);
}

.sidebar {
  width: 50px;
  background-color: #111111;
}

.content {
  flex-grow: 1;
  background-color: #171717;
  border-top-left-radius: 20px;
  padding: 30px;
  margin-top: -10px;
  border-left: 1px solid #1f1f1f;
  border-top:1px solid #1f1f1f
}



.content p {
  font-size: 16px;
  color: #ccc;
}

.location {
  font-weight: bold;
  color:rgb(165, 165, 165);
}


.file-content {
  padding:15px;
}

.file-content a {
  text-decoration: none;
  color: white;
  padding:1px;
  padding-right:15px;
  display: block;
}

.archive {
  color:#ffffff70;
  font-family: monospace;
}

.file-content table#list {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.file-content table#list thead {
  display: none;
}

.file-content table#list tbody tr {
  display: table-row;
}

.file-content table#list td {
  padding: 2px 10px;
}

.file-content table#list tbody tr:nth-child(odd) {
  background-color: rgba(59, 59, 59, 0.436);
}

.file-content table#list tbody tr:nth-child(even) {
  background-color: rgba(44, 44, 44, 0.1);
}

.file-content table#list tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.file-content table#list td.link a {
  text-decoration: none;
  color: white;
  display: block;
}

.file-content table#list td.link a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/.assets/file.webp');
}

.file-content table#list tr.is-dir td.link a::before {
  background-image: url('/.assets/folder.webp');
}

.file-content table#list td.size,
.file-content table#list td.date {
  color: rgb(165, 165, 165);
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
  width: 120px;
}

.file-content table#list tbody tr.is-parent td.link a::before {
  display: none;
}


@media screen and (max-width: 480px) {
  .sidebar {
    display:none;
  }
  .content {
    padding:5px;
    padding-top:25px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .file-content a {
    padding:10px;

  }
}
