body {
  font-family: system-ui, sans-serif;
  background: #f4f6f8;
  margin: 0;
  color: #1e2430;
}

#flow-container {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 24px;
}

#flow-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  border: 1px solid #DEDEDE;
}

#flow-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #123D6C;
}

hr {
  border: 0;
  border-top: 1px solid #1B5FA7;
  margin: 0 0 16px;
}

#back-btn {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 8px 14px;
  font-size: 14px;
}

#question {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}


#question img {
  display: block;
  max-width: calc(100% - 60px);
  height: auto;
  margin: 30px auto;
  border: 1px solid #d2d7e0;
}

#question ul,
#question ol {
  margin: 8px 0 8px 40px;
  padding: 0;
}

#question li {
  margin: 4px 0;
}

.h1 {
  font-size: 22px;
  font-weight: 700;
  color: #162032;
  margin: 0 0 12px;
}



#question code {
  display: block;
  padding: 10px 12px;
  margin: 8px auto;
  font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  background: #f4f6f9;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  max-width: calc(100% - 80px);
  white-space: pre-wrap;
  overflow-x: auto;
}

#radio-choices {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #cfd6e4;
  border-radius: 8px;
  background: #f7f9fc;
}

.radio-option {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
}

#radio-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
  justify-content: flex-end;
}

#radio-submit-btn,
#yes-btn.primary-action {
  background: #227FFE;
  color: #fff;
  padding: 10px 16px;
}

#radio-warning {
  align-self: stretch;
  font-size: 14px;
  color: #F60000;
  text-align: right;
}

#choices {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

button {
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

#yes-btn:hover {
  background: #5b9a31;
}

#no-btn:hover {
  background: #B02845;
}

#neutral-btn:hover {
  background: #5b636e;
}

#radio-submit-btn:hover,
#yes-btn.primary-action:hover {
  background: #1f6fe6;
}

#copy-btn:hover {
  background: #1865D7;
}

#back-btn:hover {
  background: #1865D7;
}

#choices button {
  min-width: 120px;
}

#yes-btn {
  background: #6AAF38;
  color: #fff;
}

#no-btn {
  background: #C93151;
  color: #fff;
}

#neutral-btn {
  background: #6b7280;
  color: #fff;
}

#support-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.secondary-btn {
  background: #227FFE;
  color: #fff;
}

#support-area {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

#support-message {
  font-size: 18px;
  color: #384256;
}

#support-output {
  width: 100%;
  min-height: 180px;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #d2d7e0;
  border-radius: 8px;
  resize: vertical;
  line-height: 1.6;
  box-sizing: border-box;
}

#copy-btn {
  align-self: flex-start;
  background: #227FFE;
  color: #fff;
  padding: 10px 16px;
}

#copy-status {
  font-size: 14px;
  color: #227FFE;
}

#copy-status:empty {
  display: none;
}

#support-output::selection {
  background: #cfe2ff !important;
  color: #0f172a !important;
}

#support-output::-moz-selection {
  background: #cfe2ff !important;
  color: #0f172a !important;
}
.hidden {
  display: none;
}

#radio-choices.hidden,
#radio-actions.hidden,
#support-area.hidden {
  display: none;
}
