/* ---------- Screen 1: start choice ---------- */
.start-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}
.start-screen h2 { font-size: 28px; font-weight: 800; color: var(--navy-dark); text-align: center; }
.choice-row { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.choice-card {
  width: 260px;
  padding: 40px 20px;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.choice-card svg { width: 42px; height: 42px; color: #3f7ce0; transition: color .2s ease; }
.choice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #cddcf5;
  background: var(--navy-dark);
  color: #fff;
}
.choice-card:hover svg { color: #fff; }

/* Draw attention to the single action that advances the session workflow. */
.guided-action {
  position: relative;
  z-index: 1;
  animation: guidedActionPulse 1.8s ease-in-out infinite;
}
.guided-action::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  pointer-events: none;
  animation: guidedActionRing 1.8s ease-out infinite;
}
@keyframes guidedActionPulse { 
  50% { box-shadow: 0 0 0 7px rgba(27, 138, 90, 0.14), var(--shadow-md); }
}
@keyframes guidedActionRing {
  0% { opacity: .8; transform: scale(.96); }
  100% { opacity: 0; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .guided-action,
  .guided-action::after { animation: none; }
}

/* ---------- Screen 2/3: recording ---------- */
.rec-screen { padding: 22px 26px; }
.rec-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 18px;
}
.rec-status { display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 16px; }
.rec-dots { display: inline-flex; gap: 3px; }
.rec-dots span { width: 4px; height: 4px; border-radius: 50%; background: linear-gradient(100.28deg, #003F84 20.38%,#51B76C 71.63%,#51B76C 99.6%); animation: recBlink 1.2s infinite; }
.rec-dots span:nth-child(2) { animation-delay: .15s; }
.rec-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes recBlink { 0%,100%{opacity:.3} 50%{opacity:1} }
.rec-timer {
  flex: 0 0 auto;
  min-width: 52px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.rec-chunkbox {
  background: var(--gray-bg);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--text-mute);
  font-size: 14px;
  margin-bottom: 8px;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rec-note {
  background: #f0f2f6;
  border-radius: 0 0 10px 10px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-mute);
  margin-bottom: 30px;
}

.rec-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.mic-select {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}
.mic-select svg { color: var(--text-mute); }

.pause-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(15,30,58,0.08);
  position: relative;
}
.pause-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--navy-dark);
  opacity: .4;
  animation: pulseRing 1.6s infinite ease-out;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.pause-btn svg { width: 18px; height: 18px; fill: #fff; stroke: none; }

.audio-quality { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; }
.wave-bars { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.wave-bars span {
  width: 3px;
  background: linear-gradient(100.28deg, #003F84 20.38%,#51B76C 71.63%,#51B76C 99.6%);
  border-radius: 2px;
  animation: waveAnim 1s infinite ease-in-out;
}
.wave-bars span:nth-child(1){height:40%;animation-delay:0s}
.wave-bars span:nth-child(2){height:70%;animation-delay:.1s}
.wave-bars span:nth-child(3){height:100%;animation-delay:.2s}
.wave-bars span:nth-child(4){height:60%;animation-delay:.3s}
.wave-bars span:nth-child(5){height:85%;animation-delay:.4s}
.wave-bars span:nth-child(6){height:35%;animation-delay:.5s}
@keyframes waveAnim { 0%,100%{transform:scaleY(.4)} 50%{transform:scaleY(1)} }

.complete-btn {
  border: 1px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background .15s ease;
  margin-left: 12px;
}
.complete-btn:hover { background: var(--blue-light); }

/* live transcript waveform strip in header */
.rec-wave-strip {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin: 0 4px;
  height: 24px;
}

.rec-wave-strip span { width: 3px; background: linear-gradient(100.28deg, #003F84 20.38%,#51B76C 71.63%,#51B76C 99.6%); border-radius: 2px; height: 40%; }
.rec-wave-strip span.dash { background: linear-gradient( 129.28deg,#003F84 20.38%,#51B76C 71.63%,#51B76C 99.6%);}

/* ---------- Modal: Assign Patient ---------- */
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(150,155,165,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
  background: #fff;
  border-radius: 14px;
  width: 520px;
  max-width: 90%;
  padding: 28px 30px 26px;
  box-shadow: var(--shadow-md);
  transform: scale(.94) translateY(10px);
  transition: transform .25s ease;
}
.modal-overlay.active .modal-card { transform: scale(1) translateY(0); }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.modal-head h3 { font-size: 20px; font-weight: 800; }
.modal-close { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; color: var(--text-mute); border-radius: 50%; }
.modal-close:hover { background: var(--gray-bg); }

.radio-row { display: flex; gap: 28px; margin-bottom: 20px; }
.radio-opt { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; cursor: pointer; }
.radio-opt input { width: 17px; height: 17px; accent-color: var(--navy); }

.field-row { display: flex; gap: 16px; margin-bottom: 26px; }
.field { flex: 1; }
.field label { display: block; font-size: 12.5px; color: var(--text-mute); margin-bottom: 6px; }
.field input {
  width: 100%;
  border: none;
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14.5px;
  outline: 2px solid transparent;
  transition: outline-color .15s ease;
}
.field input:focus { outline-color: var(--navy); background: #fff; box-shadow: 0 0 0 1px var(--gray-line); }

.modal-actions { display: flex; justify-content: flex-end; gap: 12px; }
.modal-actions .btn { padding: 11px 22px; }
.live-transcript {
  width: 100%;
  max-height: 190px;
  overflow-y: auto;
  overflow-x: auto;
}
.live-transcript-empty {
  color: var(--text-mute);
}
.live-transcript-entry {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 6px 0;
  color: var(--text);
  line-height: 1.45;
  border-bottom: 1px solid var(--gray-line);
  white-space: nowrap;
  min-width: max-content;
}
.live-transcript-entry:last-child {
  border-bottom: 0;
}
.live-transcript-time {
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
}
.live-transcript-entry strong {
  color: var(--blue);
  font-size: 12px;
}

/* ---------- Screen: transcribing / processing ---------- */
.processing-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  text-align: center;
}
.processing-screen h2 { font-size: 26px; font-weight: 800; color: var(--navy-dark); }
.processing-screen p { color: var(--text-mute); font-size: 15px; margin-bottom: 10px; }

.spinner-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 7px solid var(--blue-light);
  border-top-color: var(--green);
  border-right-color: var(--navy);
  animation: spin 1.1s linear infinite;
  margin: 12px 0 22px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.progress-track {
  width: 320px;
  max-width: 80%;
  height: 8px;
  border-radius: 6px;
  background: var(--gray-line);
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transition: width .25s ease;
}
.progress-pct { font-size: 13px; color: var(--text-mute); font-weight: 600; margin-bottom: 18px; }

.hero-msg {
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
}
.hero-msg .dots span { animation: recBlink 1.2s infinite; }
.hero-msg .dots span:nth-child(2){animation-delay:.15s}
.hero-msg .dots span:nth-child(3){animation-delay:.3s}

/* ---------- Screen: success ---------- */
.success-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
}
.check-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #e9f7ef;
  display: flex; align-items: center; justify-content: center;
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from { transform: scale(0); opacity: 0;} to { transform: scale(1); opacity: 1;} }
.check-circle svg { width: 50px; height: 50px; color: var(--green); stroke-width: 3; }
.check-circle svg path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawCheck .5s .3s ease forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.success-screen h2 { font-size: 24px; font-weight: 800; opacity: 0; animation: fadeUp .5s .4s ease forwards; }
.success-screen p { color: var(--text-mute); font-size: 15px; opacity: 0; animation: fadeUp .5s .55s ease forwards; }
.success-screen .btn { opacity: 0; animation: fadeUp .5s .7s ease forwards; margin-top: 10px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Screen: transcription results ---------- */
.results-screen { display: flex; flex-direction: column; height: 100%; }
.results-body { display: flex; flex: 1; min-height: 0; }
.results-main { flex: 1; padding: 20px 24px; overflow-y: auto; min-width: 0; }
.results-side { width: 320px; border-left: 1px solid var(--gray-line); padding: 18px 18px; display: flex; flex-direction: column; min-height: 0; }

.tab-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 16px 24px 0; }
.tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--gray-line);
  color: var(--text);
}
.tab.active { background: var(--blue-light); border-color: #c7d7f2; color: var(--navy); }
.tab .x { color: var(--text-mute); font-weight: 400; margin-left: 2px; }
.tab-icon-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
}

.tab-icon-btn.active {
  color: #1d5ec9;
  border-color: #9db7e5;
  background: #edf4ff;
}

/* Draw attention to the "Add a format" action. */
.tab-icon-btn.add-format-btn {
  color: #1d5ec9;
  border-color: #9db7e5;
  background: #edf4ff;
}

/* Plus icon and Traceability icon radiate together once 3+ formats are added. */
.tab-icon-btn.radiate {
  position: relative;
}
.tab-icon-btn.radiate::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  pointer-events: none;
  animation: iconRadiate 1.8s ease-out infinite;
}
@keyframes iconRadiate {
  0% { box-shadow: 0 0 0 0 rgba(29, 94, 201, 0.45); opacity: .8; }
  100% { box-shadow: 0 0 0 10px rgba(29, 94, 201, 0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tab-icon-btn.radiate::after { animation: none; }
}

.tab-icon-image {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.speedometer-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tab-icon-btn.active .tab-icon-image,
.tab-icon-btn.active .speedometer-icon {
  color: #2563eb;
}
.version-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

/* Persistent callout pointing at the version dropdown until the user picks a version. */
.version-guide-tip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  background: var(--navy-dark, #0f2a4d);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md, 0 8px 20px rgba(15, 42, 77, .25));
  animation: versionTipBounce 1.6s ease-in-out infinite;
}
.version-guide-tip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 18px;
  border: 6px solid transparent;
  border-bottom-color: var(--navy-dark, #0f2a4d);
}
@keyframes versionTipBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .version-guide-tip { animation: none; }
}

.version-label {
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 600;
}

.version-select {
  height: 38px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  outline: none;
}

.version-select:focus {
  border-color: #8faedd;
}

.note-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 18px;
  animation: fadeSlideIn .4s ease;
}
.note-card h4 { display: flex; justify-content: space-between; align-items: center; color: var(--blue); font-size: 15.5px; margin-bottom: 10px; }
.note-card h4 svg { width: 16px; height: 16px; color: var(--text-mute); }
.note-card ul { padding-left: 18px; margin-top: 6px; }
.note-card li { font-size: 14px; line-height: 1.75; margin-bottom: 8px; color: var(--text); }

.letter-doc {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 28px 30px;
  margin-top: 18px;
  animation: fadeSlideIn .4s ease;
  box-shadow: 0 3px 14px rgba(15, 42, 77, 0.06);
}

.letter-meta { margin-bottom: 20px; }
.letter-line { font-size: 14px; line-height: 1.75; color: var(--text); margin-bottom: 2px; }

.letter-doc h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.4;
}

.letter-doc h4 {
  font-size: 15px;
  color: var(--blue);
  margin: 22px 0 10px;
}

.letter-doc p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 12px;
}

.letter-doc ul {
  padding-left: 20px;
  margin: 8px 0 14px;
}

.letter-doc li {
  line-height: 1.78;
  margin-bottom: 8px;
}

.letter-warning {
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 3px solid #d1452b;
  background: #fff5f4;
  border-radius: 6px;
}

.letter-signoff { margin-top: 18px; }

.letter-code-table-wrap {
  margin: 14px 0 20px;
  overflow-x: auto;
}

.letter-code-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.letter-code-table th,
.letter-code-table td {
  border: 1px solid var(--gray-line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.letter-code-table th {
  background: var(--gray-bg);
  color: var(--navy);
  font-weight: 700;
}

.icd-code-btn {
  width: auto;
  min-width: 46px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.icd-code-cell {
  background: #d9f2df;
  color: #176b3a;
  font-weight: 800;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #d9f2df;
  padding: 2px 4px;
}

.icd-code-cell.icd-green {
  background: #d9f2df;
  color: #176b3a;
  box-shadow: 0 0 0 2px #d9f2df;
}

.icd-code-cell.icd-yellow {
  background: #fef3c7;
  color: #a16207;
  box-shadow: 0 0 0 2px #fef3c7;
}

.icd-code-cell.icd-red {
  background: #fee2e2;
  color: #b91c1c;
  box-shadow: 0 0 0 2px #fee2e2;
}
.side-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.side-head h4 { font-size: 15px; font-weight: 800; }
.transcript-list { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; padding-right: 4px; }
.bubble { display: flex; flex-direction: column; gap: 6px; }
.bubble-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text-mute); }
.bubble-head .avatar { width: 20px; height: 20px; border-radius: 50%; display:flex; align-items:center; justify-content:center; color: #fff; }
.bubble.a .avatar { background: var(--navy); }
.bubble.b .avatar { background: #3f7ce0; }
.bubble-text { font-size: 13.5px; line-height: 1.55; background: var(--gray-bg); border-radius: 10px; padding: 10px 12px; }
.bubble.b .bubble-text { background: var(--blue-light); }

.transcript-entry {
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.transcript-entry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.transcript-speaker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy);
  background: var(--blue-light);
  padding: 3px 8px;
  border-radius: 999px;
}

.transcript-time {
  font-size: 11.5px;
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
}

.transcript-entry-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text);
}

.content-line {
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  border-radius: 6px;
}

.results-screen.traceability-enabled .content-line {
  text-decoration: none;
}

.results-screen.traceability-enabled .content-line.traceability-available .traceable-word {
  text-decoration: none;
}

.results-screen.traceability-enabled .content-line.traceability-available .traceable-source {
  border-bottom: 2px solid #7b94c2;
}

.content-line:hover {
  background: #f4f8ff;
}

.content-line.active-line {
  background: #e9f1ff;
}

.content-line.traceability-selected {
  text-decoration: none;
}

.content-line.traceability-selected.traceability-available .traceable-word {
  text-decoration: none;
}

.content-line.traceability-selected.traceability-available .traceable-source {
  border-bottom-color: #1f5fcb;
}

.traceable-word {
  border-radius: 3px;
}

.traceable-word:hover {
  background: #dceaff;
}

.transcript-entry .traceable-word.match-word {
  background: #ffd86b;
  color: #24344d;
  box-shadow: 0 0 0 2px #ffd86b;
}

.traceable-match {
  border-bottom: 2px solid #1f5fcb;
}

.editing-line {
  outline: 1px dashed #7b94c2;
  outline-offset: 3px;
  background: #fbfdff;
}

.edit-content-btn {
  border: 0;
  padding: 2px;
  background: transparent;
  color: var(--text-mute);
  cursor: pointer;
}

.edit-content-btn:hover {
  color: var(--blue);
}

.edit-content-btn svg {
  width: 16px;
  height: 16px;
}

.line-old {
  color: #7f8aa0;
  text-decoration: line-through;
  text-decoration-thickness: 1.4px;
}

.line-change-mark {
  margin: 0 8px;
  color: #7b94c2;
  font-weight: 700;
}

.line-new {
  color: #1f5fcb;
  font-weight: 600;
}

.transcript-entry.match-hit {
  border-color: #9bb6e6;
  background: #f5f9ff;
}

.transcript-entry.match-primary {
  border-color: #3f7ce0;
  box-shadow: 0 0 0 1px #3f7ce0 inset;
  background: #edf4ff;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1c2530;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .app { grid-template-columns: 78px 260px 1fr; }
  .brand-text, .nav-item span, .nav-item { }
  .brand-text { display: none; }
  .nav-item { justify-content: center; padding: 12px 0; }
  .nav-item svg { width: 20px; height: 20px; }
  .nav-item { font-size: 0; }
  .results-side { width: 260px; }
}

@media (max-width: 820px) {
  .app { grid-template-columns: 1fr; grid-template-rows: auto auto 1fr; height: auto; min-height: 100vh; overflow: visible; }
  body { overflow: auto; }
  .sidebar { flex-direction: row; align-items: center; padding: 12px 14px; overflow-x: auto; }
  .brand { padding: 0 12px 0 0; }
  .nav { flex-direction: row; }
  .nav-gap { display: none; }
  .session-col { border-right: none; border-bottom: 1px solid var(--gray-line); max-height: 260px; }
  .results-body { flex-direction: column; }
  .results-side { width: 100%; border-left: none; border-top: 1px solid var(--gray-line); }
  .choice-row { flex-direction: column; align-items: center; }
  .review-body { flex-direction: column; }
  .review-right { border-left: none !important; border-top: 1px solid var(--gray-line); }
}


