:root {
  --bg-start: #031421;
  --bg-mid: #0d2a36;
  --bg-end: #092016;
  --card: rgba(4, 23, 33, 0.72);
  --card-border: rgba(169, 243, 198, 0.26);
  --text: #ecfff6;
  --muted: #b8d9ce;
  --primary: #58f0a7;
  --secondary: #4dcff0;
  --accent: #ffc76f;
  --danger: #ff8078;
  --ok: #7ef3c5;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 14% 20%, #18495c 0%, transparent 42%),
    radial-gradient(circle at 88% 12%, #103045 0%, transparent 40%),
    linear-gradient(140deg, var(--bg-start), var(--bg-mid), var(--bg-end));
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.35;
  pointer-events: none;
}

.orb-1 {
  width: 320px;
  height: 320px;
  left: -60px;
  top: -50px;
  background: #4dcff0;
  animation: drift 12s ease-in-out infinite;
}

.orb-2 {
  width: 280px;
  height: 280px;
  right: -70px;
  bottom: -40px;
  background: #58f0a7;
  animation: drift 14s ease-in-out infinite reverse;
}

.layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  margin: 24px 0 44px;
  display: grid;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  padding: 28px;
}

.kicker {
  margin: 0;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  margin: 10px 0 8px;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.2;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 780px;
}

.auth-required .tabs-nav,
.auth-required .tab-content {
  display: none !important;
}

.login-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  gap: 20px;
}

.login-card[hidden] {
  display: none;
}

.login-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "api api"
    "email password"
    "submit submit"
    "error error";
  align-items: end;
  gap: 14px;
  width: 100%;
}

.login-form .field {
  min-width: 0;
  width: 100%;
}

.login-api-field {
  grid-area: api;
}

.login-email-field {
  grid-area: email;
}

.login-password-field {
  grid-area: password;
}

.login-submit {
  grid-area: submit;
  justify-self: end;
  width: min(180px, 100%);
  min-height: 45px;
  white-space: nowrap;
}

.login-error {
  grid-area: error;
  min-height: 1.25rem;
  margin: 0;
  color: var(--danger);
}

@media (max-width: 680px) {
  .login-form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "api"
      "email"
      "password"
      "submit"
      "error";
  }

  .login-submit {
    justify-self: stretch;
    width: 100%;
  }
}

.controls {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.symbol-row,
.actions,
.switch-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.field {
  min-width: 220px;
}

.field-grow {
  flex: 1;
}

label {
  display: inline-block;
  margin-bottom: 7px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(184, 217, 206, 0.3);
  background: rgba(4, 16, 24, 0.72);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(126, 243, 197, 0.85);
  outline-offset: 1px;
}

.hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, #43df9a, #76f6c7);
  color: #07281b;
}

.btn-secondary {
  background: linear-gradient(135deg, #52d0f2, #7be8ff);
  color: #06222a;
}

.btn-accent {
  background: linear-gradient(135deg, #fbb049, #ffd17c);
  color: #382100;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(184, 217, 206, 0.35);
}

.result-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.result-card {
  padding: 18px;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.result-header h2 {
  margin: 0;
  font-size: 1.22rem;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.11);
  color: var(--muted);
}

.badge.ok {
  background: rgba(126, 243, 197, 0.2);
  color: var(--ok);
}

.badge.error {
  background: rgba(255, 128, 120, 0.18);
  color: var(--danger);
}

.badge.running {
  background: rgba(77, 207, 240, 0.22);
  color: var(--secondary);
}

.result {
  margin: 0;
  padding: 14px;
  min-height: 250px;
  border-radius: 12px;
  border: 1px solid rgba(184, 217, 206, 0.2);
  background: rgba(0, 7, 11, 0.56);
  color: #dcffec;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.85rem;
  line-height: 1.45;
  overflow: auto;
}

.history {
  padding: 18px;
}

.log-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.log-list li {
  border-left: 3px solid rgba(88, 240, 167, 0.65);
  padding: 7px 10px;
  background: rgba(8, 19, 26, 0.58);
  border-radius: 8px;
  color: #ddfff0;
  font-size: 0.9rem;
}

.switch {
  position: relative;
  width: 52px;
  height: 30px;
  display: inline-flex;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: rgba(88, 240, 167, 0.75);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.switch-text {
  color: var(--muted);
}

.fade-in {
  animation: fadeSlideIn 0.8s ease both;
}

.fade-delay-1 {
  animation-delay: 0.12s;
}

.fade-delay-2 {
  animation-delay: 0.2s;
}

.fade-delay-3 {
  animation-delay: 0.28s;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(10px) translateX(-12px);
  }
}

@media (max-width: 860px) {
  .result-wrap {
    grid-template-columns: 1fr;
  }

  .hero,
  .controls,
  .result-card,
  .history {
    padding: 16px;
  }

  .actions .btn,
  .symbol-row .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Backtest & Visualizations Styles
   ========================================================================== */

/* Tabs CSS */
.tabs-nav {
  display: flex;
  padding: 6px;
  gap: 6px;
  margin-bottom: 8px;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(88, 240, 167, 0.18), rgba(126, 243, 197, 0.08));
  border: 1px solid var(--primary);
  color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  gap: 18px;
}

/* Setup Grid */
.backtest-setup-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 18px;
}

@media (max-width: 960px) {
  .backtest-setup-grid {
    grid-template-columns: 1fr;
  }
}

.backtest-controls,
.backtest-import {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

/* Drag Drop Zone */
.drag-drop-zone {
  border: 2px dashed rgba(184, 217, 206, 0.22);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  background: rgba(0, 7, 11, 0.4);
  transition: border-color 0.2s, background-color 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.drag-drop-zone.hover {
  border-color: var(--primary);
  background: rgba(88, 240, 167, 0.08);
}

.drag-drop-zone .icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.drag-drop-zone .zone-text {
  font-weight: 600;
  margin: 0 0 4px;
}

.drag-drop-zone .zone-subtext {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 10px;
}

/* Progress bar */
.vn30-progress-card {
  padding: 20px 24px;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  width: 0%;
  transition: width 0.2s ease;
}

/* VN30 Results Table */
.vn30-results-card {
  padding: 24px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.results-table th,
.results-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(184, 217, 206, 0.12);
}

.results-table th {
  font-weight: 600;
  color: var(--muted);
  background: rgba(4, 16, 24, 0.5);
}

.results-table tbody tr {
  transition: background-color 0.15s;
}

.results-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Stats Summary Dashboard */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

@media (max-width: 860px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.stat-card {
  padding: 16px;
  text-align: center;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}

.text-green {
  color: var(--ok) !important;
}

.text-red {
  color: var(--danger) !important;
}

/* Main Visualization Grid */
.viz-wrapper {
  animation: fadeSlideIn 0.5s ease both;
}

.viz-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .viz-main-grid {
    grid-template-columns: 1fr;
  }
}

.charts-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chart-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.chart-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chart-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.chart-title.indicator-title {
  margin-bottom: 10px;
}

.chart-legend {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: monospace;
}

.chart-indicator-tags {
  display: flex;
  gap: 6px;
}

.indicator-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.tag-sma20 {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.tag-sma50 {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.chart-canvas {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(169, 243, 198, 0.1);
  background: #0f172a;
}

.chart-canvas.sub-chart {
  height: 180px;
}

.sub-charts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .sub-charts-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Execution Table & Detail */
.logs-sidebar {
  padding: 20px;
  display: flex;
  flex-direction: column;
  max-height: 870px;
}

.logs-sidebar h2 {
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.log-table-container {
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid rgba(184, 217, 206, 0.12);
  border-radius: 10px;
  background: rgba(0, 7, 11, 0.3);
}

.trade-logs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.76rem;
}

.trade-logs-table th,
.trade-logs-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(184, 217, 206, 0.08);
}

.trade-logs-table th {
  color: var(--muted);
  font-weight: 600;
  position: sticky;
  top: 0;
  background: #041721;
  z-index: 2;
  text-align: left;
}

.trade-logs-table tbody tr {
  cursor: pointer;
  transition: background-color 0.1s;
}

.trade-logs-table tbody tr:hover {
  background: rgba(88, 240, 167, 0.05);
}

.trade-logs-table tbody tr.selected {
  background: rgba(77, 207, 240, 0.15) !important;
  outline: 1px solid var(--secondary);
}

.trade-detail-panel {
  padding: 14px;
  background: rgba(4, 16, 24, 0.72);
  border: 1px solid rgba(184, 217, 206, 0.15);
  border-radius: 10px;
  margin-top: 15px;
}

.trade-detail-panel h3 {
  margin: 0 0 10px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(184, 217, 206, 0.15);
  padding-bottom: 4px;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-list .lbl {
  color: var(--muted);
  font-weight: 500;
}

.detail-list .val {
  font-family: monospace;
  color: var(--text);
}

.font-semibold {
  font-weight: 600;
}

/* Cloud History list styles */
.cloud-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(4, 16, 24, 0.5);
  border: 1px solid rgba(184, 217, 206, 0.1);
  border-radius: 8px;
  font-size: 0.82rem;
  transition: all 0.2s ease;
}

.cloud-history-item:hover {
  background: rgba(88, 240, 167, 0.05);
  border-color: rgba(88, 240, 167, 0.3);
}

.cloud-history-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.cloud-history-title {
  font-weight: 600;
  color: var(--text);
}

.cloud-history-date {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ── Data selection (mode + indicator toggles) ───────────────────────── */
.data-selection-block {
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.ds-mode-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.seg-control {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.seg-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 7px 16px;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seg-btn:hover {
  color: var(--text);
}

.seg-btn.active {
  background: linear-gradient(135deg, rgba(88, 240, 167, 0.18), rgba(126, 243, 197, 0.08));
  border-color: var(--primary);
  color: var(--primary);
}

.ds-panel {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ds-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.ds-group {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.ds-group-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ds-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ds-group-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.ds-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(88, 240, 167, 0.12);
  border-radius: 999px;
  padding: 2px 10px;
}

.ds-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ds-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.ds-check:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

.ds-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
}

.ds-check:has(input:checked) {
  border-color: var(--primary);
  color: var(--text);
  background: rgba(88, 240, 167, 0.08);
}

/* Small switch variant for single toggles */
.switch.switch-sm {
  width: 42px;
  height: 24px;
}

.switch.switch-sm .slider::before {
  height: 18px;
  width: 18px;
}

.switch.switch-sm input:checked + .slider::before {
  transform: translateX(18px);
}

/* Dim the panel when disabled (auto mode) */
.ds-panel.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* ───────────────────────────────────────────────────────────────────────────
   COMPARISON TABLE (Full vs Baseline) + AGENT REPORT
   ─────────────────────────────────────────────────────────────────────────── */
.text-muted {
  color: var(--muted);
}

.comparison-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

/* Agent report layout */
.agent-report-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 860px) {
  .agent-report-layout {
    grid-template-columns: 1fr;
  }
}

.agent-report-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
}

.agent-report-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.agent-report-item:hover {
  border-color: var(--primary);
  background: rgba(88, 240, 167, 0.06);
}

.agent-report-item.selected {
  border-color: var(--primary);
  background: rgba(88, 240, 167, 0.12);
}

.agent-report-item-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.agent-report-date {
  font-weight: 600;
  font-family: monospace;
  color: var(--text);
}

.agent-report-detail {
  padding: 18px;
  min-height: 200px;
}

.report-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.report-detail-header h3 {
  margin: 0;
  color: var(--text);
}

.report-badges {
  display: flex;
  gap: 8px;
}

.agent-sub-block {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}

.agent-sub-block h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.agent-analysis-text {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 8px;
  white-space: pre-wrap;
}

.agent-sub-block details {
  margin-top: 6px;
}

.agent-sub-block summary {
  cursor: pointer;
  color: var(--secondary);
  font-size: 0.82rem;
}

.agent-raw-json {
  margin-top: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  font-size: 0.76rem;
  max-height: 320px;
  overflow: auto;
  color: var(--muted);
  white-space: pre;
}
