.lists--container {
  display: none;
  position: relative;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid;
  border-color: var(--border-secondary);

  &:has(*) {
    display: flex;
  }

  &.divider > *:not(:last-child) {
    border-bottom: 1px solid var(--border-secondary);
    padding-bottom: 0.5rem;
  }
}

.lists--list-item {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--text-body);
  font-size: var(--text-xs);
  line-height: var(--rem-22);

  &.dragging {
    opacity: .5;
  }

  &.drag-over {
    border-top: 2px solid var(--primary);
  }

  &[data-deletable="true"] {
    justify-content: space-between;
  }
}

.lists--list-item-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
  color: var(--text-body);

  .draggable {
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
  }
}