.top-radio { position: fixed; }

.radio-drive-frame {
  position: relative;
  border: 1px solid var(--line);
}

.radio-drive-label,
.radio-drive-end {
  padding: 10px 16px;
  background: #090909;
  color: var(--acid);
  font: 11px monospace;
  letter-spacing: 1px;
}

.radio-drive-label { border-bottom: 1px solid var(--line); }
.radio-drive-end { border-top: 1px solid var(--line); text-align: center; }

.radio-drive {
  border: 0;
  max-height: 560px;
  scrollbar-color: var(--acid) #1b1b18;
  scrollbar-width: auto;
  overscroll-behavior: contain;
}

.radio-drive::-webkit-scrollbar { width: 14px; }
.radio-drive::-webkit-scrollbar-track { background: #1b1b18; }
.radio-drive::-webkit-scrollbar-thumb { background: var(--acid); border: 4px solid #1b1b18; }

.radio-drive .radio-file {
  display: block;
  grid-template-columns: none;
  padding: 0 !important;
}

.radio-entry {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 9px 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.radio-drive button.radio-entry {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: auto;
}

button.radio-entry:hover,
.radio-file.active .radio-entry { background: #22221d; }
.radio-file.active { box-shadow: inset 4px 0 var(--acid); }
.radio-entry > span:last-child { min-width: 0; }
.radio-entry strong,
.radio-entry small { display: block; }
.radio-entry strong { font-size: 16px; line-height: 1.2; }
.radio-entry small { margin-top: 5px; color: var(--muted); font: 12px/1.25 monospace; }
.radio-file.preparing .radio-entry { opacity: .58; }

@media (max-width: 760px) {
  .radio-drive { max-height: 480px; }
  .radio-entry {
    min-height: 56px;
    grid-template-columns: 36px 1fr;
    gap: 9px;
    padding: 8px 10px;
  }
  .radio-entry strong { font-size: 14px; }
  .radio-entry small { font-size: 11px; }
}
