.block-removed {
  opacity: 0.5;
  pointer-events: none;
}

.undo-notification {
  animation: slideInFromTop 0.3s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.block-item {
  cursor: grab;
}

.block-item:active {
  cursor: grabbing;
}

.block-item.drag-over {
  border-color: #3b82f6;
  border-width: 2px;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.block-item:hover .cursor-move {
  color: #6b7280;
}

.arrow-stage {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.arrow-stage:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid;
  z-index: 10;
}

.arrow-stage:not(:first-child) {
  padding-left: 24px;
}

.arrow-stage.active::after {
  border-left-color: #16a34a;
}

.arrow-stage.inactive::after {
  border-left-color: #9ca3af;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */
