.live-toolbar {
  min-height: 44px;
  gap: 6px;
  border-radius: 0;
  padding: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-strong) transparent;
}

.live-toolbar::-webkit-scrollbar {
  height: 6px;
}

.live-toolbar::-webkit-scrollbar-track {
  background: transparent;
}

.live-toolbar::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: var(--color-border-strong);
}

.live-toolbar.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.live-toolbar .live-action {
  min-height: 36px;
  border-radius: 2px;
  gap: 6px;
  padding: 0 10px;
  font-size: 0.76rem;
  font-weight: 780;
  box-shadow: none;
}

.live-toolbar .live-action.primary {
  box-shadow: 0 4px 10px rgba(196, 31, 44, 0.14);
}

.live-toolbar .live-action:hover {
  transform: none;
}

.live-toolbar .live-action svg {
  width: 14px;
  height: 14px;
}

.live-toolbar-divider {
  height: 20px;
}

@media (max-width: 820px) {
  .live-toolbar {
    min-height: 42px;
    padding: 4px;
  }

  .live-toolbar .live-action {
    min-height: 34px;
    padding-inline: 9px;
  }
}
