/* Planogram Styles - Only keeping styles that cannot be easily converted to Tailwind */

/* Drag and drop dynamic states */
.item-row.dragging {
  opacity: 0.3;
  background-color: rgba(255, 0, 0, 0.1);
}

[data-machine-configuration-target="gridSlot"].drop-target {
  background-color: rgba(255, 0, 0, 0.1);
  outline: 2px dashed #f87171;
}

/* Sidebar collapse functionality removed */

/* Ghost drag image - retained as custom component */
.drag-ghost {
  width: 150px;
  height: 200px;
  background-color: rgba(255, 0, 0, 0.1);
  border: 2px dashed #f87171;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.drag-ghost-title {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  text-align: center;
}

.drag-ghost-price {
  font-size: 0.75rem;
  color: #6b7280;
}