/* Content configuration card sorting */
.content-sort-status {
  margin: 8px 10px 0;
  padding: 7px 9px;
  border: 1px dashed rgba(111, 169, 216, 0.28);
  border-radius: 8px;
  background: #f8fbff;
  color: #637083;
  font-size: 11px;
  line-height: 1.45;
}

.content-sort-status.is-dirty {
  border-style: solid;
  border-color: rgba(232, 135, 155, 0.32);
  background: #fff7fa;
  color: #8f4055;
  font-weight: 800;
}

.content-sort-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.content-sort-handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid rgba(111, 169, 216, 0.24);
  border-radius: 8px;
  background: #f7fbff;
  color: #526176;
  cursor: grab;
  font-size: 11px;
  font-weight: 800;
}

.content-sort-handle:active {
  cursor: grabbing;
}

.content-sort-handle:focus-visible {
  outline: 2px solid rgba(109, 168, 206, 0.52);
  outline-offset: 2px;
}

.content-sort-position {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #eef4fa;
  color: #637083;
  font-size: 11px;
  font-weight: 900;
}

.content-sortable-list .content-row.is-sort-chosen {
  border-color: rgba(111, 169, 216, 0.42);
}

.content-sortable-list .content-row.is-sort-ghost {
  opacity: 0.42;
}
