.root {
  -st-states: placeholder, preview;

  box-sizing: border-box;
  border-radius: 8px;
  max-width: 400px;
  border: 1px solid #7a92a5;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  background-color: white;
  user-select: none;
  display: flex;
  align-items: center;
}

.root:placeholder {
  border: 1px solid transparent;
  background-color: #daeffe;
  color: transparent;
  cursor: grabbing;
}

.root:preview {
  background-color: #eafff2;
}
