body {
  display: grid;
  overflow: scroll;
  overflow-x: hidden;
  background-color: #111114;
  place-content: center;
  color: #fff;
}

.file.dark {
  background-color: #151515;
}

.title {
  font-family: 'Mozilla Headline', sans-serif;
  font-size: 36px;
  padding: 10px;
  padding-left: 5px;
  padding-bottom: 0px;
}
.listbox {
  font-family: 'Inter', sans-serif;
  padding: 0px 8px 8px 8px;
  /* padding: 10px; */
  background-color: #222223;
  margin: 20px;
  /* width: 60vw; */
  width: min(800px, 90vw);
  border-radius: 10px;
  border: solid #333333;
}
.files {
  display: grid;
  /* overflow: hidden; */
  overflow: visible;
  border: solid #414141;
  border-radius: 10px;
}
.file {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  transition: transform 0.5s ease;
  padding: 5px;
  background-color: #222223;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	animation-duration: 0.1s;
}

#thing {
  padding: 0px 10px 0px 10px;
}
.sort {
  display: flex;
}
.right {
  width: 100%;
  display: flex;
  place-content: end;
}
.left {
  width: 100%;
  display: flex;
  place-content: start;
}
.seperator {
  margin: 4px 5px 9px 5px;
  border-bottom: solid #555 2px;
}

.file:hover {
  transform: scale(1.02);
  background-color: #555;
}
.file:active {
  background-color: #888;
}

.flash {
  background-color: #555 !important; 
}

.greyout {
  color: #333333 !important; 
}

#filter {
  transition: background-color 0.25s ease-out;
  border: 2px solid #414141;
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 6px;
  margin: auto;
  margin-right: 10px;
  margin-left: 5px;
  width: 220px;
}

#filter:focus {
  outline: 2px solid #888;
}

.notfound {
  padding: 10px;
  display: grid;
  font-family: 'Inter', sans-serif;
  width: 100%;
  text-align: center;
}

.material-symbols-outlined {
  padding-bottom: 5px;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 40;
}

.items {
  font-family: 'Inter', sans-serif;
  display: flex;
}

.items div {
  padding: 2px;
  place-content: center;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}