.frank-filesystem-library{
  margin:32px 0;
  padding:24px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.015));
  backdrop-filter:blur(18px);
}

.frank-filesystem-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.frank-filesystem-kicker{
  font-size:11px;
  letter-spacing:.24em;
  opacity:.55;
}

.frank-filesystem-head h2{
  margin:5px 0 0;
  font-size:22px;
  font-weight:600;
}

#frankFilesystemReload{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.04);
  color:inherit;
  cursor:pointer;
}

.frank-filesystem-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
  font-size:12px;
  opacity:.8;
}

.frank-filesystem-stats span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
}

.frank-filesystem-tracks{
  display:grid;
  gap:10px;
}

.frank-filesystem-track{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.025);
  transition:.2s ease;
}

.frank-filesystem-track:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.14);
}

.frank-filesystem-name{
  font-size:14px;
  font-weight:600;
  overflow-wrap:anywhere;
}

.frank-filesystem-meta{
  margin-top:4px;
  font-size:11px;
  opacity:.5;
}

.frank-filesystem-play{
  min-width:88px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(120,220,255,.28);
  background:rgba(120,220,255,.06);
  color:inherit;
  cursor:pointer;
}

.frank-filesystem-empty{
  padding:28px;
  text-align:center;
  border-radius:18px;
  border:1px dashed rgba(255,255,255,.09);
  opacity:.55;
  line-height:1.6;
}

@media(max-width:700px){
  .frank-filesystem-library{
    padding:16px;
  }

  .frank-filesystem-track{
    align-items:flex-start;
    flex-direction:column;
  }

  .frank-filesystem-play{
    width:100%;
  }
}

/* MUSICBOXFRANK v3.7.1 FILE PLAYER */

.frank-fs-transport{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 20px;
}

.frank-fs-transport button{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.035);
  color:inherit;
  cursor:pointer;
  transition:.2s ease;
}

.frank-fs-transport button:hover{
  transform:translateY(-1px);
  border-color:rgba(120,220,255,.30);
  background:rgba(120,220,255,.07);
}

.frank-filesystem-play.is-playing{
  border-color:rgba(120,220,255,.55);
  background:rgba(120,220,255,.13);
}

@media(max-width:700px){
  .frank-fs-transport{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
  }

  .frank-fs-transport button{
    padding:10px 8px;
  }
}
