/* Review container styling (minimal, dark-mode friendly) */
.pdr-review-box {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
}

.pdr-review-box pre {
  margin: 0;
  white-space: pre-wrap; /* wraps long lines */
  word-break: break-word;
  font-size: 14px;
  line-height: 1.4;
}
#pdr-guided-creation .pdr-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px;
  margin-top: 12px;
  border-radius: 10px;
}

#pdr-guided-creation .pdr-row {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#pdr-guided-creation .pdr-btn {
  padding: 6px 10px;
  border-radius: 8px;
}

#pdr-guided-creation .pdr-block {
  margin-top: 10px;
}

#pdr-guided-creation .pdr-label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}

#pdr-guided-creation .pdr-muted {
  opacity: 0.75;
  margin-top: 4px;
}

#pdr-guided-creation .pdr-pre {
  white-space: pre-wrap;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px;
  border-radius: 10px;
  overflow: auto;
}

#pdr-guided-creation .pdr-inspect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

@media (min-width: 900px) {
  #pdr-guided-creation .pdr-inspect-grid {
    grid-template-columns: 1fr 1fr;
  }
}
