.bpl { max-width: 640px; }
.bpl-title { margin: 0 0 6px; font-size: 19px; color: #27331f; }
.bpl-desc { margin: 0 0 16px; font-size: 13.5px; color: #5b6b56; }

.bpl-crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  margin-bottom: 16px; padding: 10px 12px;
  background: #f3f4f8; border: 1px solid #d9e0d4; border-radius: 6px;
}
.bpl-crumb-item {
  font-size: 13px; font-weight: 700; color: #27331f;
  padding: 4px 8px; border-radius: 5px; background: #fff; border: 1px solid #d9e0d4;
}
.bpl-crumb-item.bpl-crumb-current { background: #19616a; border-color: #19616a; color: #fff; }
.bpl-crumb-arrow { color: #5b6b56; font-size: 13px; }

.bpl-panel { display: flex; flex-direction: column; gap: 12px; }
.bpl-panel label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; font-weight: 700; color: #27331f; }
.bpl-panel input, .bpl-panel select {
  padding: 9px 11px; font-size: 14.5px; border: 1px solid #d9e0d4; border-radius: 6px;
}
.bpl-panel input:focus, .bpl-panel select:focus { outline: 2px solid #19616a; outline-offset: 1px; }

.bpl-step-heading { font-size: 14px; font-weight: 700; color: #27331f; margin: 0; }
.bpl-step-hint { font-size: 12.5px; color: #5b6b56; margin: -6px 0 0; }

.bpl-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.bpl-choice {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 10px 12px; font-size: 13.5px; font-weight: 700; color: #27331f;
  background: #fff; border: 1px solid #d9e0d4; border-radius: 6px; cursor: pointer; text-align: left;
}
.bpl-choice:hover { border-color: #19616a; }
.bpl-choice:focus-visible { outline: 2px solid #19616a; outline-offset: 1px; }
.bpl-choice-result { color: #19616a; }
.bpl-choice-note { font-size: 12px; font-weight: 400; color: #5b6b56; }
.bpl-choice.bpl-choice-noop { opacity: 0.85; }

.bpl-modifier-row { display: flex; flex-wrap: wrap; gap: 10px; }

.bpl-actions { margin-top: 14px; }
.bpl-reset {
  padding: 8px 14px; font-size: 13px; font-weight: 700; border: 1px solid #d9e0d4; border-radius: 6px;
  background: #fff; color: #27331f; cursor: pointer;
}
.bpl-reset:hover { border-color: #19616a; color: #19616a; }
.bpl-reset:focus-visible { outline: 2px solid #19616a; outline-offset: 1px; }

.bpl-out { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.bpl-cmd {
  display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 10px 12px; background: #f3f4f8; border: 1px solid #d9e0d4; border-radius: 6px;
}
.bpl-cmd code { font-family: ui-monospace, monospace; font-size: 13.5px; color: #19616a; font-weight: 700; word-break: break-all; }
.bpl-cmd span { font-size: 12.5px; color: #5b6b56; }

.bpl-note { margin-top: 16px; font-size: 13px; color: #5b6b56; }

@media (max-width: 480px) {
  .bpl-choice-grid { grid-template-columns: 1fr; }
}
