:root {
  color-scheme: dark;
  --bg: #06100f;
  --bg-2: #0a1614;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(216, 255, 236, 0.12);
  --text: #f5fbf8;
  --muted: #92a49d;
  --green: #35e58f;
  --cyan: #20d4f0;
  --purple: #9d5cff;
  --amber: #ffb84d;
  --coral: #ff6b6b;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -4%, rgba(53, 229, 143, 0.2), transparent 30%),
    radial-gradient(circle at 84% 0%, rgba(32, 212, 240, 0.13), transparent 25%),
    linear-gradient(180deg, #071211 0%, var(--bg) 38%, #030706 100%);
  color: var(--text);
}

button,
a,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 18px 56px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 255, 236, 0.12);
  border-radius: 20px;
  background: rgba(5, 13, 12, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.brand,
.top-actions,
.nav,
.status-card,
.section-title,
.legend,
.chart-legend,
.ai-report-head {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #04120c;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px rgba(53, 229, 143, 0.35);
}

.nav {
  justify-content: center;
  gap: 6px;
}

.nav a {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #bad0c7;
  font-size: 14px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.top-actions {
  justify-content: flex-end;
  gap: 10px;
}

.sync-pill,
.status-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: #d7e6df;
  font-size: 13px;
  font-weight: 750;
}

.sync-pill {
  padding: 0 12px;
  white-space: nowrap;
}

.icon-button,
.primary-button,
.ghost-button {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(20px);
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 22px;
}

.icon-button span {
  display: inline-block;
}

.icon-button.loading span {
  animation: rotate 0.8s linear infinite;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 820;
}

.primary-button {
  color: #03120c;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 14px 36px rgba(53, 229, 143, 0.22);
}

.primary-button.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 54px 4px 22px;
}

.eyebrow,
.muted,
small {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 18px;
  color: #a5bbb3;
  font-size: 16px;
  line-height: 1.6;
}

h2 {
  font-size: 24px;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
}

.status-card,
.panel,
.recovery-card,
.metric-card,
.coach-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(7, 18, 16, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
}

.status-card {
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  margin: 0 0 16px;
}

.status-card p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.status-pills span {
  gap: 7px;
  padding: 0 11px;
}

.status-pills i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.status-pills .ok i {
  background: var(--green);
}

.today-board {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 14px;
}

.recovery-card {
  grid-row: span 2;
  min-height: 390px;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ring-wrap {
  position: relative;
  width: 208px;
  height: 208px;
}

.ring {
  width: 208px;
  height: 208px;
  transform: rotate(-90deg);
}

.ring-track,
.ring-value {
  fill: none;
  stroke-width: 13;
}

.ring-track {
  stroke: rgba(255, 255, 255, 0.1);
}

.ring-value {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  filter: drop-shadow(0 0 18px rgba(53, 229, 143, 0.52));
  transition: stroke-dashoffset 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.ring-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.ring-center span {
  font-size: 46px;
  font-weight: 900;
}

.readiness p {
  margin-top: 10px;
  color: #b8cbc3;
  line-height: 1.7;
}

.coach-card {
  grid-column: span 2;
  padding: 22px;
  border-radius: 24px;
}

.section-title {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title.compact {
  margin-bottom: 14px;
}

.section-title > span {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.action-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.action-list div,
.body-metrics div,
.stats-list div,
.issue-list div,
.mini-grid > div {
  border: 1px solid rgba(216, 255, 236, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.action-list div {
  min-height: 92px;
  padding: 14px;
  border-radius: 16px;
}

.action-list b,
.action-list span,
.stats-list span,
.stats-list strong,
.stats-list small,
.issue-list span,
.issue-list p,
.body-metrics span,
.body-metrics strong {
  display: block;
}

.action-list span {
  margin-top: 10px;
  color: #bad0c7;
  line-height: 1.45;
}

.metric-card {
  min-height: 152px;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: floatIn 0.7s both;
}

.metric-card span {
  color: var(--muted);
  font-size: 14px;
}

.metric-card strong {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
}

.accent-green {
  border-color: rgba(53, 229, 143, 0.24);
}

.accent-cyan {
  border-color: rgba(32, 212, 240, 0.24);
}

.accent-amber {
  border-color: rgba(255, 184, 77, 0.26);
}

.accent-coral {
  border-color: rgba(255, 107, 107, 0.26);
}

.pipe-section {
  scroll-margin-top: 96px;
  margin-top: 28px;
}

.panel {
  padding: 22px;
  border-radius: 22px;
  animation: panelIn 0.42s both;
}

.pipe-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.sleep-timeline {
  display: flex;
  height: 52px;
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
}

.sleep-timeline span {
  display: block;
  min-width: 5px;
  animation: grow 0.9s both;
}

.awake {
  background: #d7e0de;
}

.light {
  background: var(--cyan);
}

.deep {
  background: var(--purple);
}

.rem {
  background: var(--green);
}

.legend,
.chart-legend {
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.legend i,
.chart-legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 7px;
}

.chart-legend .green {
  background: var(--green);
}

.chart-legend .purple {
  background: var(--purple);
}

.chart-legend .amber {
  background: var(--amber);
}

.mini-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.mini-grid > div {
  min-height: 78px;
  padding: 14px;
  border-radius: 16px;
}

.mini-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.strain-meter {
  position: relative;
  height: 20px;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.strain-fill {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--coral));
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel p {
  color: #b8cbc3;
  line-height: 1.65;
}

.workout-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 255, 236, 0.12);
}

.workout-row span {
  color: var(--muted);
}

.body-metrics,
.stats-list,
.issue-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.body-metrics div,
.stats-list div,
.issue-list div {
  padding: 14px;
  border-radius: 16px;
}

.body-metrics span,
.stats-list span,
.issue-list span {
  color: var(--muted);
  font-size: 13px;
}

.body-metrics strong,
.stats-list strong {
  margin-top: 6px;
  font-size: 22px;
}

.stats-list small,
.issue-list p {
  margin-top: 7px;
  color: #b8cbc3;
  line-height: 1.5;
}

.trend-layout,
.month-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 14px;
}

.chart-panel {
  overflow: hidden;
}

.chart,
.scatter {
  width: 100%;
  height: auto;
  min-height: 300px;
}

.grid-line {
  stroke: rgba(216, 255, 236, 0.09);
  stroke-width: 1;
}

.axis-text,
.axis-label {
  fill: #82958e;
  font-size: 13px;
}

.axis-label {
  font-size: 15px;
}

.axis-label.vertical {
  transform: rotate(-90deg);
  transform-origin: 14px 84px;
}

.line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 1.35s 0.12s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.line.green {
  stroke: var(--green);
  filter: drop-shadow(0 0 10px rgba(53, 229, 143, 0.35));
}

.line.purple {
  stroke: var(--purple);
}

.line.amber {
  stroke: var(--amber);
}

.green-area {
  fill: rgba(53, 229, 143, 0.12);
}

.dot {
  fill: var(--green);
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.5;
}

.trend-line {
  stroke: rgba(216, 255, 236, 0.34);
  stroke-width: 3;
  stroke-dasharray: 8 8;
}

.scatter-dot {
  fill: var(--dot);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--dot), transparent 55%));
}

.ai-report {
  min-height: 300px;
}

.ai-report-head {
  gap: 13px;
  margin-bottom: 18px;
}

.ai-report-head p {
  margin-top: 6px;
  color: var(--muted);
}

.pulse {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(53, 229, 143, 0.44);
  animation: pulse 2.2s infinite;
}

.ai-report-body,
.coach-answer {
  white-space: pre-wrap;
  line-height: 1.75;
  color: #dff8ea;
}

.ai-report-body {
  padding: 18px;
  border: 1px solid rgba(53, 229, 143, 0.18);
  border-radius: 18px;
  background: rgba(53, 229, 143, 0.07);
}

.coach-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.note-box,
.chat-box {
  display: grid;
  gap: 12px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-grid button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 760;
}

.tag-grid button.selected {
  color: #06100b;
  background: var(--green);
  border-color: transparent;
}

textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  outline: none;
  line-height: 1.55;
}

.form-button {
  width: fit-content;
}

.coach-answer {
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: 16px;
  background: rgba(32, 212, 240, 0.07);
  border: 1px solid rgba(32, 212, 240, 0.16);
}

.wide-button {
  grid-column: 1 / -1;
  width: 100%;
}

.menu-button {
  display: none;
}

.core-screen {
  display: grid;
  gap: 14px;
}

.core-headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.core-headline .eyebrow {
  margin-bottom: 6px;
}

.core-headline > span {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.core-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.core-card,
.today-command,
.settings-drawer {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 18, 16, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
}

.core-card {
  position: relative;
  min-height: 250px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  animation: panelIn 0.42s both;
}

.core-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -36% 18%;
  height: 120px;
  opacity: 0.34;
  filter: blur(24px);
  pointer-events: none;
}

.core-sleep::after {
  background: var(--cyan);
}

.core-recovery::after {
  background: var(--green);
}

.core-strain::after {
  background: var(--amber);
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.core-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

.core-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #b8cbc3;
  line-height: 1.5;
}

.core-recovery {
  display: grid;
  place-items: center;
  text-align: center;
}

.core-recovery .metric-label {
  justify-self: start;
  align-self: start;
}

.core-recovery .ring-wrap,
.core-recovery .ring {
  width: 164px;
  height: 164px;
}

.core-recovery .ring-center span {
  font-size: 38px;
}

.mini-bar {
  position: relative;
  z-index: 1;
  height: 11px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.mini-bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.compact-meter {
  margin: 28px 0 0;
}

.today-command {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
}

.support-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.settings-drawer {
  margin-top: 16px;
  border-radius: 22px;
  overflow: hidden;
}

.settings-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 0 20px;
  cursor: pointer;
  list-style: none;
}

.settings-drawer summary::-webkit-details-marker {
  display: none;
}

.settings-drawer summary span {
  font-weight: 860;
}

.settings-drawer summary small {
  text-align: right;
}

.settings-drawer .status-card {
  margin: 0;
  border-width: 1px 0 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.035);
}

.settings-actions {
  display: grid;
  gap: 10px;
  min-width: 150px;
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(53, 229, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(53, 229, 143, 0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes grow {
  from {
    transform: scaleX(0.2);
    transform-origin: left;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .today-board,
  .pipe-grid,
  .trend-layout,
  .month-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recovery-card,
  .coach-card,
  .sleep-panel,
  .chart-panel {
    grid-column: 1 / -1;
  }

  .coach-tools {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .shell {
    padding: max(12px, env(safe-area-inset-top)) 12px 34px;
  }

  .topbar {
    top: 6px;
    gap: 10px;
    grid-template-columns: auto 1fr auto;
    min-height: 54px;
    padding: 8px;
    border-radius: 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .top-actions {
    grid-column: 3;
    gap: 8px;
  }

  .sync-pill {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    grid-column: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    overflow: visible;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(5, 13, 12, 0.94);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(24px);
  }

  body.nav-open .nav {
    display: grid;
  }

  .nav a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 38px;
    padding: 0 4px;
    font-size: 13px;
  }

  .hero {
    padding: 24px 2px 10px;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 21px;
  }

  .status-card,
  .hero,
  .section-title,
  .workout-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .today-board,
  .pipe-grid,
  .trend-layout,
  .month-grid,
  .mini-grid.two {
    grid-template-columns: 1fr;
  }

  .core-headline {
    align-items: flex-start;
  }

  .core-headline > span {
    font-size: 12px;
    white-space: normal;
    text-align: right;
  }

  .core-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .core-card {
    min-height: 148px;
    padding: 12px;
    border-radius: 18px;
  }

  .metric-label {
    font-size: 12px;
  }

  .core-card strong {
    margin-top: 16px;
    font-size: 34px;
  }

  .core-card p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .core-recovery .ring-wrap,
  .core-recovery .ring {
    width: 92px;
    height: 92px;
  }

  .core-recovery .ring-track,
  .core-recovery .ring-value {
    stroke-width: 16;
  }

  .core-recovery .ring-center span {
    font-size: 24px;
  }

  .core-recovery .ring-center small {
    font-size: 11px;
  }

  .mini-bar {
    height: 8px;
    margin-top: 14px;
  }

  .compact-meter {
    height: 10px;
    margin-top: 16px;
  }

  .today-command,
  .support-metrics {
    grid-template-columns: 1fr;
  }

  .today-command {
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .action-list {
    grid-template-columns: 1fr;
  }

  .action-list div {
    min-height: 72px;
  }

  .recovery-card,
  .metric-card,
  .panel,
  .coach-card {
    border-radius: 18px;
  }

  .recovery-card {
    min-height: 0;
    gap: 24px;
  }

  .ring-wrap,
  .ring {
    width: 178px;
    height: 178px;
  }

  .ring-center span {
    font-size: 40px;
  }

  .metric-card {
    min-height: 126px;
  }

  .settings-drawer {
    border-radius: 18px;
  }

  .settings-drawer summary {
    min-height: 58px;
    padding: 0 14px;
  }

  .settings-drawer .status-card {
    gap: 16px;
  }

  .settings-actions,
  .settings-actions .primary-button,
  .settings-actions .ghost-button {
    width: 100%;
  }

  .chart,
  .scatter {
    min-height: 250px;
  }
}
