.storyboard-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
}
.storyboard-toolbar button { padding: 5px 8px; }
.storyboard-toolbar .reorder-hint { margin-right: auto; }
.drag-handle {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #020617d9;
  border: 1px solid #475569;
  color: #e2e8f0;
  font-size: 20px;
  cursor: grab;
  touch-action: none;
}
.drag-handle:active { cursor: grabbing; }
.scene-number { left: 40px; }
.motion-details,
.bulk-details {
  margin: 10px 0;
  border: 1px solid #2b3a50;
  border-radius: 9px;
  padding: 2px 8px;
  background: #0b1220;
}
.motion-details summary,
.bulk-details summary {
  padding: 5px 2px;
  color: #cbd5e1;
  font-weight: 650;
}
.bulk-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 0 0 8px;
}
.bulk-actions button { min-height: 42px; }
@media (max-width: 760px) {
  .reorder-hint { flex-basis: 100%; order: 4; }
  .drag-handle { width: 34px; height: 34px; }
  .bulk-actions { grid-template-columns: 1fr; }
}
