/* ── Input / Select ──────────────────────────────────────────────── */
._inputCls_1q0n7_2 {
  flex: 1 1 auto;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 6px 9px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}

/* ── Row content wrapper ─────────────────────────────────────────── */
._rowContent_1q0n7_15 {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: stretch;
  padding: 3px 0;
  gap: var(--slot-gap);
}

/* ── Drag handle ─────────────────────────────────────────────────── */
._dragHandle_1q0n7_25 {
  font-size: 14px;
  color: #484f58;
  cursor: grab;
  line-height: 1;
  padding-right: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
._dragHandle_1q0n7_25:active {
  cursor: grabbing;
}

/* ── Layout slots ────────────────────────────────────────────────── */
._barSlot_1q0n7_40 {
  display: flex;
  flex: 0 0 var(--bar-slot);
  align-items: center;
  justify-content: center;
}
._cbWrap_1q0n7_46 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
._handleSlot_1q0n7_51 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Task info grid (badge | content) ────────────────────────────── */
._taskInfo_1q0n7_59 {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: 4.5rem 1fr;
  align-content: center;
  gap: var(--slot-gap);
}
@container taskInfo (max-width: 280px) {
  ._taskInfo_1q0n7_59 {
    grid-template-columns: 1fr;
  }
}
._badgeSlot_1q0n7_71 {
  display: flex;
  flex: 1 1 4.5rem;
  align-items: center;
}
._taskWrapSlot_1q0n7_76 {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--slot-gap);
}
._taskLabelSlot_1q0n7_85 {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 2rem;
}
._meta_1q0n7_92 {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: var(--slot-gap);
}
._deleteSlot_1q0n7_99:empty {
  display: none;
}
._deleteSlot_1q0n7_99 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: stretch;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
._btn_1q0n7_110 {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  height: 100%;
}
._btnDanger_1q0n7_122 {
  color: var(--danger);
  border-color: rgba(248, 81, 73, 0.27);
}
._btnAdd_1q0n7_126 {
  color: var(--link);
  border-color: rgba(88, 166, 255, 0.27);
}
._btnConfirm_1q0n7_130 {
  color: var(--green);
  border-color: rgba(63, 185, 80, 0.27);
}
._deleteBtn_1q0n7_134 {
  padding: 2px 7px;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Layout utilities ────────────────────────────────────────────── */
._flexInput_1q0n7_141 {
  flex: 1;
  min-width: 0;
}
._hidden_1q0n7_145 {
  display: none;
}
._clipContents_1q0n7_148 {
  overflow: hidden;
}
