/* SRP: list rows, folder/file icons, download button, more button. */

.drv-list { display: flex; flex-direction: column; gap: 1px; margin-top: 4px; }

.drv-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  cursor: pointer; transition: background .1s;
}
.drv-row:hover { background: rgba(255,255,255,.04); }

.drv-row-name {
  flex: 1; min-width: 0; font-size: 14px; font-weight: 500;
  color: var(--text); overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.drv-row-meta {
  font-size: 12px; color: var(--muted); white-space: nowrap; flex-shrink: 0;
}

/* ── Folder SVG icon ─────────────────────────── */
.drv-icon { flex-shrink: 0; color: var(--accent); opacity: .85; }

/* ── File-type icon (emoji) ───────────────────── */
.drv-file-icon { font-size: 20px; flex-shrink: 0; width: 24px; text-align: center; }

/* ── Download button ───────────────────────────── */
.drv-download-btn {
  padding: 5px 14px; border-radius: 6px; font-size: 12px;
  font-weight: 600; flex-shrink: 0; cursor: pointer;
  border: 1px solid rgba(124,92,255,.3); background: rgba(124,92,255,.08);
  color: var(--accent); transition: background .15s, border-color .15s;
}
.drv-download-btn:hover {
  background: rgba(124,92,255,.18); border-color: rgba(124,92,255,.5);
}

/* ── More button (three-dot) ─────────────────── */
.drv-more-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: transparent;
  color: var(--muted); font-size: 20px; line-height: 1;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  transition: background .1s, color .1s;
}
.drv-more-btn:hover { background: rgba(255,255,255,.08); color: var(--text); }
