/* ==========================================================================
   Nephrology Epic Storyboard Review — Clinician Feedback Survey Stylesheet
   Design System: Clean Clinical Teal / Editorial Data Density
   ========================================================================== */

:root {
  --ink: #172c30;
  --muted: #5e6b6e;
  --line: #d4dcd9;
  --teal: #244e51;
  --teal-hover: #1a3c3e;
  --green: #e8f1ec;
  --green-dark: #1e5a3c;
  --green-bg: #edf7f0;
  --red: #9d3c36;
  --red-bg: #f9eeeb;
  --red-border: #f0c3be;
  --surface: #f3f5f3;
  --focus: #12638b;
  --warning-bg: #fff8e6;
  --warning-border: #e6b84d;
  --warning-text: #7a5400;
  --blue-badge: #e8f3fa;
  --blue-text: #11537a;
  --info-bg: #eef5f7;
  --info-border: #b8d4dc;
  --info-text: #1a4d5a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font: 15px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button, select, summary {
  cursor: pointer;
}

button, input, textarea, select, a, summary {
  outline-offset: 3px;
}

button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
}

button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, p {
  margin: 0;
}

button {
  touch-action: manipulation;
}

.skip {
  position: fixed;
  top: -80px;
  left: 12px;
  padding: 12px;
  background: white;
  z-index: 100;
}

.skip:focus {
  top: 8px;
}

/* Privacy & PHI Notice Banner */
.phi-banner {
  background: var(--warning-bg);
  border-bottom: 1px solid var(--warning-border);
  color: var(--warning-text);
  padding: 10px 28px;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.phi-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
}

.phi-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* Top App Header Bar */
.bar {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 25;
}

.identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mark {
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-content: center;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.identity strong {
  font-size: 15px;
  letter-spacing: -.2px;
  display: block;
}

.identity small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.bar-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Non-production local dev indicator */
.dev-indicator {
  background: var(--blue-badge);
  color: var(--blue-text);
  border: 1px solid #b8d9ec;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dev-dot {
  color: #0b6b99;
  font-size: 9px;
}

.bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid #bdcbc6;
  border-radius: 5px;
  background: #fff;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn:hover:not(:disabled) {
  background: #f0f4f1;
}

.btn.primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn.primary:hover:not(:disabled) {
  background: var(--teal-hover);
}

.btn.success {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

.btn.danger {
  color: var(--red);
}

.save {
  font-size: 12px;
  color: var(--muted);
}

/* Shell Layout */
.shell {
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 28px 45px;
}

/* Illustrative Storyboard Content Disclaimer Box */
.illustrative-disclaimer-box {
  background: var(--info-bg);
  border: 1px solid var(--info-border);
  color: var(--info-text);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.disclaimer-icon {
  font-weight: bold;
  color: var(--teal);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pageheading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 15px;
}

h1 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.4px;
  margin: 0 0 7px;
}

.intro {
  color: #46595c;
  font-size: 14px;
  max-width: 840px;
}

.preview-label {
  font-size: 12px;
  color: var(--teal);
  background: #e5eeea;
  padding: 5px 9px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Role & Program Profile */
.profile {
  margin: 13px 0 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}

.profile summary {
  font-size: 13px;
  color: var(--muted);
  width: fit-content;
  font-weight: 600;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 740px;
  margin-top: 12px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

.field input, .field select {
  width: 100%;
  padding: 8px 10px;
  height: 39px;
  background: #fff;
  border: 1px solid #bfcac5;
  border-radius: 4px;
}

.profile-note {
  font-size: 12px;
  color: var(--muted);
  grid-column: 1 / -1;
}

/* Alerts and Notices */
.note {
  border-left: 3px solid #82948b;
  padding: 8px 12px;
  background: #eaf0e9;
  font-size: 13px;
  margin: 0 0 18px;
}

.submission-status-banner {
  background: var(--green-bg);
  border: 1px solid #b7dbc2;
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Patient Group Tabs */
.group-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 15px;
}

.group-tab {
  border: 1px solid #b8c7c0;
  background: #fff;
  color: var(--teal);
  border-radius: 4px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s ease;
}

.group-tab:hover {
  background: #edf3ef;
}

.group-tab[aria-current=true] {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.group-tab .tab-badge {
  display: inline-block;
  font-size: 11px;
  background: #0002;
  padding: 1px 5px;
  border-radius: 10px;
  margin-left: 5px;
}

/* Tools bar */
.tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 13px;
}

.view-switch {
  display: inline-flex;
  border: 1px solid #bccbc4;
  border-radius: 5px;
  overflow: hidden;
  background: white;
}

.view-switch button {
  border: 0;
  background: transparent;
  padding: 8px 13px;
  font-size: 14px;
  min-height: 37px;
}

.view-switch button + button {
  border-left: 1px solid #bccbc4;
}

.view-switch button[aria-pressed=true] {
  background: var(--teal);
  color: white;
}

.order-note {
  font-size: 12px;
  color: var(--muted);
}

.toolbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pin {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.pin input {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
}

/* Storyboard Simulation Header */
.storyboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.storyboard-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
}

.synthetic-badge {
  font-size: 11px;
  background: #ebf0ee;
  color: #44615b;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500;
}

.storyboard-line {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 9px;
}

.storyboard-trigger {
  font: 14px Arial, sans-serif;
  min-height: 32px;
  background: #fff;
  border: 1px solid #9dacaa;
  border-radius: 2px;
  padding: 6px 10px;
  color: #173d46;
  text-align: left;
  min-width: 235px;
  cursor: pointer;
}

.hover-label {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0;
}

.review-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 18px 6px 18px;
}

.paper {
  background: white;
  border: 1px solid #bac6c0;
  box-shadow: 0 2px 7px #20352a06;
  padding: 16px 18px 21px;
  border-radius: 2px;
}

.report-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: center;
  margin-bottom: 9px;
}

.report-title {
  font: 700 16px/1.5 Arial, sans-serif;
  color: #111;
}

.report-title span {
  font-weight: 400;
  font-size: 14px;
}

.counter {
  font-size: 12px;
  color: var(--muted);
}

.report-section {
  margin-top: 8px;
}

.section-row, .item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
  position: relative;
}

.section-row {
  padding: 10px 0 4px;
  border-top: 1px dashed #303b39;
}

.section-title {
  font: 700 15px/1.4 Arial, sans-serif;
  color: #111;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 4px;
}

.ref {
  font: 11px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #78837e;
  min-width: 23px;
  display: inline-block;
  font-weight: 400;
}

.item-row {
  padding: 3px 0;
  min-height: 35px;
}

.clinical {
  font: 14px/1.45 Arial, sans-serif;
  color: #111;
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 4px 0;
}

.clinical-content {
  min-width: 0;
  overflow-wrap: anywhere;
}

.clinical strong {
  font-weight: 600;
}

.clinical table {
  display: inline-table;
  border-collapse: collapse;
  margin: 3px 0 1px;
  font-size: 14px;
}

.clinical table th {
  font-weight: 400;
  text-align: left;
  color: #56605a;
  font-size: 12px;
}

.clinical table th, .clinical table td {
  padding: 1px 16px 1px 0;
  vertical-align: top;
  font-variant-numeric: tabular-nums;
}

.clinical table th:last-child, .clinical table td:last-child {
  padding-right: 0;
}

.clinical .value-note {
  font-size: 12px;
  color: #5c655f;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding-top: 1px;
}

.decision {
  display: inline-flex;
  border: 1px solid #c3cec7;
  border-radius: 4px;
  overflow: hidden;
  flex: none;
}

.decision button {
  font-size: 12px;
  border: 0;
  background: #fff;
  padding: 5px 9px;
  min-height: 29px;
}

.decision button + button {
  border-left: 1px solid #c3cec7;
}

.decision button:hover {
  background: #f1f5f2;
}

.decision .keep[aria-pressed=true] {
  background: #dcece2;
  color: #17422b;
  font-weight: 650;
}

.decision .remove[aria-pressed=true] {
  background: #f5ded7;
  color: #8c322a;
  font-weight: 650;
}

.comment-btn {
  border: 0;
  background: transparent;
  padding: 5px 2px;
  color: #5d6d65;
  font-size: 12px;
  min-height: 30px;
  white-space: nowrap;
}

.comment-btn:hover {
  text-decoration: underline;
}

.comment-btn.has-comment {
  color: var(--teal);
  font-weight: 650;
}

.order-control {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 11px;
  color: #66726b;
}

.order-control select {
  padding: 3px 2px;
  background: #fff;
  border: 1px solid #c4cec8;
  border-radius: 3px;
  width: 43px;
  height: 29px;
  font-size: 12px;
  color: #263c30;
}

.section-row .decision {
  border-color: #9fac9e;
}

.item-row.removed > .clinical {
  text-decoration: line-through;
  color: #8a8e89;
}

.item-row.removed > .clinical .clinical-content {
  opacity: .6;
}

.report-section.removed .clinical, .report-section.removed .section-title {
  color: #8a8e89;
}

.report-section.removed .clinical-content {
  opacity: .55;
}

.report-section.removed {
  background: linear-gradient(90deg, #f5f6f3 0, transparent 100%);
}

.section-excluded {
  font-size: 11px;
  color: var(--red);
  padding: 0 0 5px 31px;
}

.report-footer {
  border-top: 1px dashed #34423b;
  margin-top: 10px;
  padding-top: 8px;
  font: 12px/1.4 Arial, sans-serif;
  color: #5a635d;
}

.general-comment {
  margin-top: 17px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.general-comment label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 6px;
}

.general-comment textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 9px 10px;
  border: 1px solid #b7c8bf;
  border-radius: 4px;
  background: #fff;
}

/* Legal and Institutional Disclaimer */
.legal-disclaimer-box {
  margin: 28px 0 12px;
  padding: 12px 16px;
  background: #f4f6f5;
  border: 1px solid #d5deda;
  border-left: 3px solid var(--teal);
  border-radius: 4px;
}

.legal-disclaimer-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.bottom-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.text-btn {
  border: 0;
  background: transparent;
  padding: 6px 0;
  color: #52675c;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13px;
}

.footer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.empty-report {
  font: 14px Arial, sans-serif;
  color: #737a72;
  padding: 20px 0;
}

.hidden-status {
  font-size: 12px;
  color: var(--muted);
  padding-top: 8px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #24453e;
  color: white;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 14px;
  z-index: 100;
  max-width: 90vw;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

/* Dialog & Modals */
.dialog {
  width: calc(100% - 32px);
  max-width: 740px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  max-height: 85vh;
  box-shadow: 0 15px 70px rgba(0, 0, 0, 0.25);
}

.dialog::backdrop {
  background: #1e342f80;
  backdrop-filter: blur(2px);
}

.dialog-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #fafbfa;
}

.dialog-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.dialog-body {
  padding: 22px;
  overflow-y: auto;
  max-height: calc(85vh - 140px);
}

.dialog-body p {
  margin-bottom: 12px;
}

.dialog-body textarea {
  width: 100%;
  resize: vertical;
  min-height: 140px;
  padding: 11px;
  border: 1px solid #b7c8bf;
  border-radius: 4px;
  font-size: 14px;
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: #fafbfa;
}

.close-btn {
  background: none;
  border: 0;
  font-size: 22px;
  line-height: 1;
  padding: 5px 8px;
  color: var(--muted);
}

.close-btn:hover {
  color: var(--ink);
}

.feedback-summary {
  font: 13px/1.5 SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  margin: 0;
  white-space: pre-wrap;
  max-height: 48vh;
  overflow: auto;
  background: #f8faf8;
  padding: 14px;
  border: 1px solid #e1e7e4;
  border-radius: 4px;
}

/* Submission Modal Specific Styles */
.submit-group-card {
  border: 1px solid #dbe2de;
  border-radius: 5px;
  padding: 11px 14px;
  margin-bottom: 9px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submit-group-card .group-name {
  font-weight: 600;
  font-size: 14px;
}

.submit-group-card .group-stats {
  font-size: 12px;
  color: var(--muted);
}

.submit-check-row {
  margin: 18px 0 10px;
  padding: 12px 14px;
  background: #fdfaf2;
  border: 1px solid #f2e2be;
  border-radius: 5px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.submit-check-row input[type=checkbox] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
}

.submission-success-box {
  text-align: center;
  padding: 24px 16px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: #dcece2;
  color: #17422b;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.confirmation-code-box {
  background: #f4f7f5;
  border: 1px dashed var(--teal);
  padding: 12px 18px;
  border-radius: 6px;
  margin: 16px auto;
  max-width: 440px;
}

.confirmation-code {
  font-family: SFMono-Regular, Consolas, Menlo, monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .5px;
}

.submission-error-box {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  color: var(--red);
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 13px;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Report Only View Mode */
.report-only .review-controls,
.report-only .review-head,
.report-only .counter,
.report-only .ref,
.report-only .section-excluded {
  display: none;
}

.report-only .report-title-row,
.report-only .section-row,
.report-only .item-row {
  display: block;
}

.report-only .paper {
  max-width: 820px;
  padding: 14px 16px;
}

.report-only .item-row {
  min-height: 0;
  padding: 0;
}

.report-only .clinical {
  padding: 2px 0;
}

.report-only .section-row {
  padding-top: 9px;
  padding-bottom: 4px;
}

.report-only .clinical-content {
  opacity: 1;
}

.report-only .report-title-row {
  margin-bottom: 8px;
}

.report-only .report-section {
  margin-top: 6px;
}

.report-only .section-title {
  padding: 0;
}

.report-only .report-footer {
  font-size: 11px;
}

.report-only .general-comment {
  display: none;
}

.report-only .order-note {
  display: none;
}

/* Responsive Media Queries */
@media (max-width: 1000px) {
  .shell {
    padding-left: 18px;
    padding-right: 18px;
  }
  .bar {
    padding: 12px 18px;
  }
  .section-row, .item-row, .report-title-row, .review-head {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 16px;
  }
  .review-controls {
    gap: 6px;
  }
  .decision button {
    padding-left: 7px;
    padding-right: 7px;
  }
  .order-control {
    gap: 3px;
  }
  .comment-btn {
    font-size: 11px;
  }
  .clinical {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 16px;
  }
  .bar-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .save {
    display: none;
  }
  .shell {
    padding-top: 16px;
  }
  .pageheading {
    display: block;
  }
  .preview-label {
    display: none;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .review-head {
    display: none;
  }
  .paper {
    padding: 13px 12px;
  }
  .section-row, .item-row, .report-title-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .report-title-row {
    gap: 3px;
  }
  .section-row {
    gap: 5px;
    padding-top: 12px;
    padding-bottom: 7px;
  }
  .section-row > .review-controls {
    background: #eef2ed;
    padding: 5px 6px;
    border-radius: 3px;
  }
  .item-row {
    gap: 0;
    padding: 6px 0;
    border-bottom: 1px dotted #e3e8e1;
  }
  .item-row:last-child {
    border: 0;
  }
  .item-row > .review-controls {
    padding-left: 31px;
    justify-content: flex-start;
    gap: 14px;
  }
  .decision button {
    font-size: 12px;
    padding: 5px 9px;
  }
  .order-control {
    font-size: 12px;
  }
  .storyboard-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .section-excluded {
    padding-left: 0;
  }
  .footer {
    flex-wrap: wrap;
  }
  .bottom-actions {
    flex-wrap: wrap;
  }
}

/* Print Stylesheet */
@media print {
  body {
    background: white;
  }
  .bar, .phi-banner, .illustrative-disclaimer-box, .legal-disclaimer-box, .pageheading, .profile, .note,
  .tools, .storyboard-header-row, .storyboard-line, .hover-label, .review-head,
  .review-controls, .counter, .ref, .bottom, .footer, .hidden-status, .toast,
  .section-excluded, .dialog {
    display: none !important;
  }
  .shell {
    padding: 0;
    max-width: none;
  }
  .paper {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .section-row, .item-row, .report-title-row {
    display: block;
  }
  .item-row {
    padding: 0;
    min-height: 0;
    border: 0;
  }
  .clinical {
    padding: 2px 0;
  }
  .report-section.removed, .item-row.removed {
    display: none;
  }
  .report-section {
    break-inside: avoid;
  }
}
