.sl-lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.sl-list-card {
  background: #15151d;
  border: 1px solid #2a2a36;
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 120ms ease, transform 120ms ease;
}
.sl-list-card:hover {
  border-color: #3d6ea5;
  transform: translateY(-1px);
}
.sl-list-name {
  font-weight: 600;
  color: #e4e4ea;
  margin-bottom: 4px;
  font-size: 14px;
  word-break: break-word;
}
.sl-list-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: #8b8b99;
}
.sl-list-stats span {
  padding: 2px 6px;
  border-radius: 10px;
  background: #1f1f2a;
}
.sl-list-stats .sl-stat-completed { color: #8ee38a; }
.sl-list-stats .sl-stat-failed { color: #ff8c94; }
.sl-list-stats .sl-stat-pending { color: #f0c160; }
.sl-list-stats .sl-stat-downloaded { color: #5da8ff; }

.sl-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
