#list {
  border-radius: 0.75rem;
  max-width: 980px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  margin: 0 auto;
  margin-top: 5px;
}
body {
  background-color: #f7f8fa;
}
.markdown-body img {
  max-width: 90%;
  max-height: 800px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.markdown-body h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}
.password-wrapper {
    display: flex;
    align-items: center;
  }

  .password {
    margin: 0 auto;
    padding-top: 1em;
    display: none;
    width: 75%;
    padding: 2rem;
  }

  .password input {
    height: 2em;
    outline: none;
    border: solid rgb(218, 215, 215) 1px;
    padding-inline-start: 0.75rem;
    padding-inline-end: 0.75rem;
    background-color: #f1f3f5;
    min-height: 2.5rem;
    border-radius: 0.5rem;
    margin-top: 5px;
    width: 100%;
  }

  .password button#correct {
      background-color: #e1f0ff;
      color: #006adc;
      padding-inline-start: 1rem;
      padding-inline-end: 1rem;
      border-radius: 0.4rem;
      height: 2.5rem;
      border: 1px solid transparent;
      margin-top: 5px;
  }

  .password button#correct:hover{
    background-color: #cee7fe;
  }

  .password button#back {
    background-color: #eceef0;
    color: #11181c;
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
    border-radius: 0.4rem;
    height: 2.5rem;
    border: 1px solid transparent;
    margin-top: 5px;
}

.password button#back:hover{
  background-color: #e6e8eb;
}

#file-wrapper {
    padding: 0.5rem;
}
.btn{
    float: right;
    text-align: center;
    width: 5em;
    background-color: #ede9fe;
    color: #5746af;
    padding-inline-start: 1rem;
      padding-inline-end: 1rem;
      border-radius: 0.4rem;
      border: 1px solid transparent;
      margin-top: 5px;
      margin-left: 2px;
      margin-bottom: 5px;
}
.file {
    width: 100%;
    display: flex;
    align-items: center;
    padding:0.5rem;
    transition: transform 0.2s ease;
}
.file:hover{
  transform: scale(1.01);
  background-color: rgba(132, 133, 141, 0.18);
  border-radius: 0.5rem;
}
.name {
    width: 50%;
    display: flex;
}
.size{
    text-align: right;
    width: 33%;
}
.time{
    text-align: right;
    width: 17%;
}
.content img{
  border-radius: 0.5rem;
}
.file-wrapper{
  cursor: pointer;
}
.preview{
  padding:0.7rem;
}
#nav-site,#path{
  cursor: pointer;
}

*{
  box-sizing: border-box;
}
.loader {
  width: 50px;
  border-width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid lightblue;
  border-right-color: rgb(24, 144, 255);
  animation: l2 0.75s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}}

.passwordButton{
  float: right;
  margin-bottom: 10px;
}

.loading-wrapper {
  transform: translate(45%, 0);
  padding: 20px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .time{
    display: none;
  }
  .password{
    width: 100%;
  }
}