/* Drop groups. Horizontal steppers keep minus on the left after the
   DOM order puts Increase first. Stacked sheets override this with a
   more specific rule so plus stays on top. */

.qty-input-wrap > .qty-step-btn[aria-label="Decrease quantity"] {
  order: 1;
  border-right: none;
  border-left: 1px solid var(--border, #ccc);
  border-radius: 8px 0 0 8px;
}

.qty-input-wrap > .qty-input {
  order: 2;
}

.qty-input-wrap > .qty-step-btn[aria-label="Increase quantity"] {
  order: 3;
  border-left: none;
  border-right: 1px solid var(--border, #ccc);
  border-radius: 0 8px 8px 0;
}

.drop-group-card {
  display: grid;
  gap: 0.65rem;
  margin: 0.55rem 0;
  padding: 0.75rem;
  border: 1px solid var(--border, #d5d8de);
  border-radius: 10px;
  background: var(--surface, #fff);
}

.drop-group-head {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.drop-group-label {
  flex: 1;
  min-width: 0;
}

.drop-group-main {
  display: grid;
  gap: 0.65rem;
}

.drop-group-more {
  margin-top: 0.15rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--border, #d5d8de);
}

.drop-group-note {
  margin: 0;
  color: var(--muted, #5a6a7a);
  font-size: 0.92rem;
}

.drop-group-totals {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: var(--surface, #fff);
}

.basic-net-sheet > .field {
  margin-top: 0.85rem;
}
