:root {
  --bg: #070f1b;
  --bg-soft: #0d1b2f;
  --panel: rgba(14, 27, 45, 0.86);
  --panel-strong: #12253f;
  --line: rgba(155, 184, 223, 0.24);
  --line-soft: rgba(155, 184, 223, 0.11);
  --text: #edf4ff;
  --muted: #9eb4d6;
  --muted-strong: #b7cae6;
  --teal: #18d1b9;
  --blue: #41a2ff;
  --amber: #ffb347;
  --red: #ff6b6b;
  --green: #47d28f;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 24px rgba(3, 9, 18, 0.28);
  --shadow-soft: 0 6px 16px rgba(5, 14, 28, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% -6%, rgba(24, 209, 185, 0.2), transparent 28%),
    radial-gradient(circle at 88% -4%, rgba(65, 162, 255, 0.22), transparent 32%),
    radial-gradient(circle at 50% 110%, rgba(71, 210, 143, 0.08), transparent 36%),
    linear-gradient(180deg, #06101c 0%, #081423 45%, var(--bg) 100%);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 15, 27, 0.82);
  backdrop-filter: blur(10px);
}

.site-nav-inner {
  width: min(1760px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--text);
  text-decoration: none;
}

.site-links {
  display: flex;
  gap: 16px;
}

.site-links a {
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-auth-actions {
  display: flex;
  gap: 8px;
}

#nav-sign-out {
  display: none;
}

.ghost-btn,
.solid-btn {
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.ghost-btn {
  border: 1px solid rgba(90, 166, 245, 0.46);
  background: linear-gradient(135deg, rgba(65, 162, 255, 0.2), rgba(142, 164, 194, 0.1));
  color: #e4f2ff;
}

.solid-btn {
  border: 1px solid rgba(24, 209, 185, 0.55);
  background: linear-gradient(135deg, rgba(24, 209, 185, 0.28), rgba(65, 162, 255, 0.2));
  color: #e9fbff;
}

.landing-hero,
.landing-section {
  width: min(1760px, calc(100% - 24px));
  margin: 0 auto;
}

.landing-hero {
  padding: 56px 0 28px;
}

.landing-inner {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(14, 27, 45, 0.65);
  padding: 28px;
}

.landing-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.landing-title {
  margin: 10px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.landing-copy {
  margin: 0;
  color: var(--muted-strong);
  max-width: 760px;
  line-height: 1.5;
}

.landing-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-section {
  margin-top: 12px;
}

.landing-section.alt .landing-inner {
  background: rgba(10, 22, 38, 0.7);
}

.landing-section h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
}

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

.feature-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(18, 34, 56, 0.72);
  padding: 12px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.app-wrap {
  margin-top: 18px;
  padding-bottom: 24px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(2, 8, 16, 0.72);
  backdrop-filter: blur(6px);
}

.auth-modal.open {
  display: flex;
}

.auth-dialog {
  width: min(680px, calc(100% - 20px));
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(14, 27, 45, 0.96), rgba(11, 22, 38, 0.96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 18px;
  position: relative;
}

.auth-dialog h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.auth-dialog p {
  margin: 6px 0 0;
  color: var(--muted);
}

.auth-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.page-shell {
  width: min(1760px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(15, 29, 49, 0.82);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  backdrop-filter: blur(3px);
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

h1 {
  margin: 6px 0 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.topbar-subtext {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.45;
  font-size: 0.94rem;
}

.upload-wrap {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.target-controls {
  display: flex;
  align-items: end;
  gap: 8px;
  flex-wrap: wrap;
}

.target-label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
  font-weight: 800;
  margin-right: 2px;
}

.target-field {
  display: grid;
  gap: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.target-field input {
  width: 78px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(8, 18, 31, 0.85);
  color: var(--text);
  padding: 7px 9px;
  font: inherit;
  font-size: 0.88rem;
}

.target-field input:focus-visible {
  outline: 2px solid rgba(24, 209, 185, 0.48);
  outline-offset: 1px;
}

.target-apply-btn {
  padding: 9px 12px;
}

#file-input {
  display: none;
}

.topbar-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}

.upload-btn {
  display: inline-block;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 209, 185, 0.55);
  background: linear-gradient(135deg, rgba(24, 209, 185, 0.26), rgba(65, 162, 255, 0.16));
  color: #e9fbff;
  padding: 9px 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.export-btn {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(90, 166, 245, 0.46);
  background: linear-gradient(135deg, rgba(65, 162, 255, 0.24), rgba(142, 164, 194, 0.14));
  color: #e4f2ff;
  padding: 9px 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: transform 160ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.upload-btn:hover,
.export-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow: var(--shadow-soft);
}

.upload-btn:focus-visible,
.export-btn:focus-visible {
  outline: 2px solid rgba(24, 209, 185, 0.56);
  outline-offset: 2px;
}

.dataset-meta {
  color: var(--muted-strong);
  font-size: 0.84rem;
  text-align: right;
  display: grid;
  gap: 4px;
}

.message-banner {
  margin-top: 10px;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

.message-banner.info {
  background: rgba(65, 162, 255, 0.16);
  border-color: rgba(65, 162, 255, 0.25);
}

.message-banner.warning {
  background: rgba(255, 179, 71, 0.14);
  border-color: rgba(255, 179, 71, 0.3);
}

.message-banner.error {
  background: rgba(255, 107, 107, 0.14);
  border-color: rgba(255, 107, 107, 0.32);
}

.auth-panel {
  margin-top: 12px;
  padding: 10px;
  background: rgba(9, 19, 34, 0.46);
}

.auth-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.auth-recovery-row {
  margin-top: 8px;
  display: none;
}

.auth-recovery-row.is-visible {
  display: flex;
}

.auth-input {
  min-width: 170px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(8, 18, 31, 0.75);
  color: var(--text);
  padding: 9px 10px;
  font: inherit;
}

.auth-status {
  color: var(--muted-strong);
  font-size: 0.86rem;
  margin-left: 4px;
}

.auth-gate-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

#app-content {
  transition: filter 180ms ease, opacity 180ms ease;
}

body.app-locked #app-content {
  pointer-events: none;
  user-select: none;
  opacity: 0.36;
  filter: blur(2px) saturate(0.85);
}

.upload-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
  filter: none;
}

.export-btn:disabled,
.target-field input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.global-kpi {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kpi-card {
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(16, 31, 52, 0.76);
  padding: 11px 13px;
}

.kpi-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.kpi-value {
  display: block;
  margin-top: 7px;
  font-size: 1.36rem;
}

.layout {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 12px;
}

.panel {
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(15, 29, 49, 0.78);
  box-shadow: var(--shadow);
  padding: 14px;
  backdrop-filter: blur(2px);
}

.panel-heading h2,
.panel-heading h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.panel-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(9, 19, 34, 0.46);
}

.table-wrap::-webkit-scrollbar {
  height: 10px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(102, 138, 184, 0.48);
  border-radius: 999px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

#sender-table {
  min-width: 860px;
  table-layout: auto;
}

th,
td {
  text-align: left;
  padding: 9px 9px;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}

#sender-table th,
#sender-table td {
  overflow: visible;
  text-overflow: clip;
}

#sender-table th:first-child,
#sender-table td:first-child {
  min-width: 240px;
}

#sender-table th:not(:first-child),
#sender-table td:not(:first-child) {
  text-align: right;
}

th {
  color: var(--muted-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(16, 31, 51, 0.98);
}

.sender-row {
  cursor: pointer;
  transition: background 160ms ease;
}

.sender-row:hover {
  background: rgba(65, 162, 255, 0.1);
}

.sender-row.active {
  background: rgba(65, 162, 255, 0.2);
}

.sender-row.active td:first-child {
  box-shadow: inset 2px 0 0 rgba(24, 209, 185, 0.95);
}

.score-cell {
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: right;
}

.score-pill {
  display: inline-block;
  min-width: 42px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 2px 6px;
  line-height: 1.2;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.empty-cell,
.mini-empty,
.empty-state-chart {
  color: var(--muted);
  text-align: center;
}

.metric-grid {
  margin-top: 12px;
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.score-band {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(17, 34, 57, 0.66);
  padding: 12px;
}

.score-ring {
  --score: 0;
  --ring-color: #47d28f;
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 166, 194, 0.3);
  background: #112238;
}

.score-ring-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.score-ring-track {
  fill: none;
  stroke: rgba(148, 166, 194, 0.26);
  stroke-width: 10;
}

.score-ring-progress {
  fill: none;
  stroke: var(--ring-color);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314.159;
  stroke-dashoffset: 314.159;
  transition: stroke 200ms ease, stroke-dashoffset 260ms ease;
}

.score-ring-inner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0e1a2b;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(148, 166, 194, 0.25);
}

.score-ring-inner strong {
  font-size: 0.98rem;
}

.score-ring-inner span {
  color: var(--muted);
  font-size: 0.72rem;
}

.score-copy h3 {
  margin: 0;
  font-size: 1rem;
}

.score-copy p {
  margin: 6px 0 0;
  color: var(--muted-strong);
  line-height: 1.42;
  font-size: 0.9rem;
}

.metric-card {
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  background: rgba(17, 33, 55, 0.72);
  padding: 12px 10px 11px;
}

.metric-label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.74rem;
}

.metric-value {
  display: block;
  margin-top: 7px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.chart-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chart-card {
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(17, 33, 55, 0.7);
  padding: 12px 10px 10px;
}

.chart-card h3 {
  color: #e8f1ff;
  letter-spacing: 0.01em;
}

.chart-area {
  margin-top: 10px;
  min-height: 174px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(8, 18, 31, 0.52);
  padding: 10px 9px;
}

.bar-chart {
  min-height: 155px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28px, 1fr));
  align-items: end;
  gap: 8px;
}

.line-chart {
  width: 100%;
  height: 166px;
}

.line-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.line-grid {
  stroke: rgba(155, 184, 223, 0.22);
  stroke-width: 1;
}

.line-stroke {
  fill: none;
  stroke: #2ad7c3;
  stroke-width: 2.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.line-point {
  fill: #4b95ff;
  stroke: #dff2ff;
  stroke-width: 1;
}

.line-value {
  fill: #dfeeff;
  font-size: 11px;
  font-weight: 700;
  text-anchor: middle;
}

.line-x-label,
.line-y-label {
  fill: var(--muted);
  font-size: 10.5px;
}

.line-x-label {
  text-anchor: middle;
}

.line-y-label {
  text-anchor: end;
}

.bar-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bar {
  width: 100%;
  border-radius: 999px 999px 8px 8px;
  min-height: 5px;
  background: linear-gradient(180deg, #2ad7c3, #4b95ff);
  box-shadow: 0 2px 12px rgba(64, 162, 255, 0.2);
}

.bar-value,
.bar-label {
  font-size: 0.69rem;
  color: var(--muted);
}

.stack-track {
  width: 100%;
  height: 20px;
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-soft);
}

.stack-segment {
  height: 100%;
}

.legend {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted-strong);
}

.swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.insight-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-list,
.recommendations {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.mini-item,
.reco-item {
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(17, 33, 55, 0.62);
  padding: 9px 9px 8px;
}

.reco-card {
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(18, 34, 56, 0.68);
  padding: 10px 10px 9px;
  display: grid;
  gap: 5px;
}

.reco-chip {
  justify-self: start;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(142, 164, 194, 0.18);
  color: #dceafe;
}

.reco-title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.25;
  color: #ebf3ff;
}

.reco-body {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.45;
}

.reco-card.reco-critical {
  border-color: rgba(255, 107, 107, 0.38);
}

.reco-card.reco-critical .reco-chip {
  background: rgba(255, 107, 107, 0.24);
  color: #ffe4e4;
}

.reco-card.reco-warning {
  border-color: rgba(255, 179, 71, 0.38);
}

.reco-card.reco-warning .reco-chip {
  background: rgba(255, 179, 71, 0.24);
  color: #fff0d9;
}

.reco-card.reco-positive {
  border-color: rgba(71, 210, 143, 0.38);
}

.reco-card.reco-positive .reco-chip {
  background: rgba(71, 210, 143, 0.2);
  color: #defff0;
}

.reco-legend {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reco-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--muted-strong);
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  padding: 3px 8px;
  background: rgba(16, 30, 49, 0.58);
}

.reco-legend-item i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.legend-critical i { background: rgb(235, 74, 90); }
.legend-warning i { background: rgb(255, 176, 64); }
.legend-positive i { background: rgb(58, 210, 127); }
.legend-neutral i { background: rgb(120, 164, 220); }

.mini-item-title {
  display: block;
  font-weight: 800;
}

.mini-item-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.metric-def-panel {
  margin-top: 14px;
}

.pdf-report-root {
  background: linear-gradient(180deg, #07101b, #08121f);
  min-height: 100vh;
  padding: 16px 0;
}

.pdf-shell {
  width: 1180px;
  max-width: 1180px;
}

.pdf-sender-section {
  margin-top: 12px;
}

.pdf-page-break {
  page-break-before: always;
}

.definition-table td:first-child {
  width: 220px;
  color: #d6e3f8;
  font-weight: 800;
}

.detail-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(17, 34, 57, 0.64);
  padding: 11px 13px;
}

.detail-title p {
  text-align: right;
  margin-top: 6px;
  line-height: 1.35;
  padding-left: 12px;
  color: var(--muted-strong);
}

.senders-actions {
  margin-top: 11px;
}

.saved-reports-wrap {
  margin-top: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}

.saved-reports-wrap h3 {
  margin: 0;
  font-size: 0.98rem;
}

#view-overall.active {
  border-color: rgba(24, 209, 185, 0.75);
  background: linear-gradient(135deg, rgba(24, 209, 185, 0.36), rgba(65, 162, 255, 0.24));
  color: #efffff;
  box-shadow: 0 8px 18px rgba(24, 209, 185, 0.2);
}

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

@media (max-width: 900px) {
  .site-nav-inner,
  .site-links {
    flex-wrap: wrap;
  }

  .site-links {
    order: 3;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .global-kpi,
  .metric-grid,
  .chart-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .upload-wrap {
    justify-items: start;
  }

  .target-controls {
    align-items: center;
  }

  .dataset-meta {
    text-align: left;
  }

  .detail-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-title p {
    text-align: left;
    padding-left: 0;
  }
}
