:root {
  --navy: #071a2f;
  --navy-2: #0c2b48;
  --teal: #0e9ca4;
  --teal-bright: #11b8c4;
  --amber: #f5b62d;
  --ink: #10253b;
  --muted: #657588;
  --line: #dce5ea;
  --soft: #f4f7f8;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--soft);
}
body {
  background: var(--soft);
  color: var(--ink);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.app-shell {
  background: #f3f6f7;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}
.sidebar {
  color: #fff;
  background: linear-gradient(#06182b 0%, #0a2742 100%);
  flex-direction: column;
  height: 100vh;
  padding: 24px 18px;
  display: flex;
  position: sticky;
  top: 0;
}
.brand-card {
  background: #fff;
  border-radius: 14px;
  align-items: center;
  height: 72px;
  padding: 12px 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 12px 30px #00000026;
}
.brand-card img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.sidebar-eyebrow {
  color: #91a9bb;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 18px 10px 28px;
  font-size: 11px;
  font-weight: 700;
}
.sidebar nav {
  gap: 7px;
  display: grid;
}
.nav-item {
  color: #cbd8e1;
  text-align: left;
  background: 0 0;
  border: 0;
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
}
.nav-item span {
  color: #8ca4b6;
  border-radius: 7px;
  place-items: center;
  width: 23px;
  height: 23px;
  font-size: 16px;
  display: grid;
}
.nav-item:hover {
  color: #fff;
  background: #ffffff0f;
}
.nav-item.active {
  color: #fff;
  box-shadow: inset 3px 0 0 var(--teal-bright);
  background: #11b8c429;
}
.nav-item.active span {
  color: var(--teal-bright);
}
.sidebar-foot {
  color: #b7c7d2;
  border-top: 1px solid #ffffff1a;
  margin-top: auto;
  padding: 16px 13px;
  font-size: 12px;
}
.sidebar-foot small {
  color: #738da0;
  margin-top: 7px;
  display: block;
}
.live-dot {
  background: #3ddc97;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  display: inline-block;
  box-shadow: 0 0 0 4px #3ddc971f;
}
.workspace {
  min-width: 0;
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 19px 34px;
  display: flex;
}
.topbar h1 {
  letter-spacing: -0.02em;
  margin: 5px 0 0;
  font-size: 25px;
}
.overline {
  color: var(--teal);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.account-chip {
  border: 1px solid var(--line);
  text-align: left;
  background: #fbfcfd;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  padding: 8px 10px;
  display: flex;
}
.avatar {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}
.account-chip div {
  flex: 1;
  gap: 2px;
  display: grid;
}
.account-chip strong {
  font-size: 12px;
}
.account-chip small {
  color: var(--muted);
  font-size: 10px;
}
.chevron {
  color: var(--muted);
}
.dashboard-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 26px 32px 38px;
}
.hero-strip {
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, #14c0c838, #0000 25%),
    linear-gradient(115deg, #071a2f, #0b3250);
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 188px;
  padding: 30px 34px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px #071a2f29;
}
.hero-strip:after {
  content: "";
  border: 1px solid #ffffff14;
  border-radius: 50%;
  width: 330px;
  height: 330px;
  position: absolute;
  bottom: -130px;
  right: -90px;
  box-shadow:
    0 0 0 44px #ffffff08,
    0 0 0 92px #ffffff05;
}
.hero-strip > div {
  z-index: 1;
  position: relative;
}
.market-pill {
  color: #d8eef1;
  letter-spacing: 0.08em;
  border: 1px solid #ffffff29;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}
.market-pill i {
  background: var(--teal-bright);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.hero-strip h2 {
  letter-spacing: -0.04em;
  margin: 17px 0 9px;
  font-size: clamp(27px, 3vw, 39px);
}
.hero-strip p {
  color: #b9cad5;
  max-width: 680px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.hero-quote {
  border-left: 1px solid #ffffff29;
  gap: 5px;
  min-width: 220px;
  padding: 18px 22px;
  display: grid;
}
.hero-quote span {
  color: #9db4c3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}
.hero-quote strong {
  font-size: 32px;
}
.hero-quote strong small {
  color: #bdd4dd;
  font-size: 13px;
}
.hero-quote em {
  color: #68e0c1;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
.kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  display: grid;
}
.kpi-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  background: #fff;
  border-radius: 14px;
  flex-direction: column;
  min-height: 128px;
  padding: 18px 19px;
  display: flex;
  box-shadow: 0 8px 22px #0f23350d;
}
.kpi-card.amber {
  border-top-color: var(--amber);
}
.kpi-card.navy {
  border-top-color: var(--navy-2);
}
.kpi-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}
.kpi-card strong {
  letter-spacing: -0.03em;
  margin-top: 14px;
  font-size: 27px;
}
.kpi-card span {
  color: #82909f;
  margin-top: auto;
  font-size: 11px;
}
.content-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(290px, 0.8fr);
  align-items: start;
  gap: 18px;
  margin-top: 18px;
  display: grid;
}
.panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px #0f23350a;
}
.panel-heading {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  display: flex;
}
.panel-heading span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 10px;
  font-weight: 800;
}
.panel-heading h3 {
  margin: 4px 0 0;
  font-size: 17px;
}
.unit-badge {
  background: #edf7f7;
  border-radius: 7px;
  padding: 6px 9px;
  color: #0a7b82 !important;
}
.chart-wrap {
  padding: 16px 18px 2px;
}
.chart-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.chart-grid {
  stroke: #dce5e8;
  stroke-width: 1px;
  stroke-dasharray: 4 5;
}
.chart-axis {
  fill: #738293;
  font-size: 10px;
}
.chart-month {
  fill: #687888;
  font-size: 9px;
}
.chart-line {
  stroke: #0e9ca4;
  stroke-width: 3.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chart-dot {
  fill: #fff;
  stroke: #0e9ca4;
  stroke-width: 3px;
}
.chart-dot.current {
  fill: var(--amber);
  stroke: #fff;
  filter: drop-shadow(0 0 4px #f5b62dcc);
}
.chart-caption {
  color: var(--muted);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 18px;
  font-size: 10px;
  display: flex;
}
.chart-caption span {
  align-items: center;
  gap: 7px;
  display: flex;
}
.legend-line {
  background: var(--teal);
  border-radius: 4px;
  width: 18px;
  height: 3px;
}
.text-button {
  color: var(--teal);
  background: 0 0;
  border: 0;
  font-size: 11px;
  font-weight: 700;
}
.alerts-list {
  padding: 2px 18px 10px;
}
.alert-item {
  border-bottom: 1px solid #edf1f3;
  grid-template-columns: 9px 1fr;
  gap: 12px;
  padding: 16px 2px;
  display: grid;
}
.alert-item:last-child {
  border-bottom: 0;
}
.alert-marker {
  background: var(--teal);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-top: 5px;
}
.alert-marker.high {
  background: #ef6a5b;
  box-shadow: 0 0 0 4px #ef6a5b1a;
}
.alert-marker.medium {
  background: var(--amber);
  box-shadow: 0 0 0 4px #f5b62d1f;
}
.alert-marker.info {
  background: var(--teal);
  box-shadow: 0 0 0 4px #0e9ca41a;
}
.alert-meta {
  justify-content: space-between;
  gap: 12px;
  display: flex;
}
.alert-meta span {
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.alert-meta time {
  color: #93a0ac;
  font-size: 9px;
}
.alert-item h4,
.feed-item h4 {
  margin: 6px 0 5px;
  font-size: 13px;
}
.alert-item p,
.feed-item p {
  color: var(--muted);
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}
.single-view {
  max-width: 1180px;
}
.data-panel,
.feed-panel,
.admin-preview {
  overflow: hidden;
}
.table-scroll {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  text-align: right;
  border-bottom: 1px solid #e9eff2;
  padding: 14px 20px;
  font-size: 12px;
}
th:first-child,
td:first-child {
  text-align: left;
}
th {
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #f7f9fa;
  font-size: 10px;
}
.change {
  border-radius: 6px;
  justify-content: center;
  min-width: 58px;
  padding: 5px 7px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
}
.change.up {
  color: #087a57;
  background: #e9f8f2;
}
.change.down {
  color: #bb3d3d;
  background: #fceeee;
}
.change.flat {
  color: #71808f;
  background: #f0f3f5;
}
.feed-item {
  border-bottom: 1px solid #e9eff2;
  grid-template-columns: 12px 1fr;
  gap: 15px;
  padding: 21px;
  display: grid;
}
.feed-item h4 {
  font-size: 16px;
}
.feed-item p {
  max-width: 720px;
  font-size: 13px;
}
.admin-preview {
  text-align: center;
  padding: 50px;
}
.admin-preview .admin-icon {
  width: 58px;
  height: 58px;
  color: var(--teal);
  background: #eaf7f7;
  border-radius: 17px;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 25px;
  display: grid;
}
.admin-preview h2 {
  margin: 9px 0;
  font-size: 28px;
}
.admin-preview > p {
  max-width: 590px;
  color: var(--muted);
  margin: 0 auto;
  line-height: 1.6;
}
.admin-feature-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 760px;
  margin: 30px auto 0;
  display: grid;
}
.admin-feature-grid span {
  border: 1px solid var(--line);
  color: var(--navy-2);
  background: #f9fbfb;
  border-radius: 10px;
  padding: 15px 10px;
  font-size: 11px;
  font-weight: 700;
}
.login-page {
  background: #fff;
  grid-template-columns: minmax(420px, 1.12fr) minmax(420px, 0.88fr);
  min-height: 100vh;
  display: grid;
}
.login-brand {
  color: #fff;
  background:
    radial-gradient(circle at 72% 28%, #11b8c43d, #0000 27%),
    linear-gradient(135deg, #06182b, #0a3452);
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 50px clamp(42px, 7vw, 100px);
  display: flex;
  position: relative;
  overflow: hidden;
}
.login-brand:after {
  content: "";
  border: 1px solid #ffffff14;
  border-radius: 50%;
  width: 550px;
  height: 550px;
  position: absolute;
  bottom: -210px;
  right: -210px;
  box-shadow:
    0 0 0 70px #ffffff06,
    0 0 0 145px #ffffff05;
}
.login-brand > * {
  z-index: 1;
  position: relative;
}
.login-logo {
  background: #fff;
  border-radius: 15px;
  align-items: center;
  width: 250px;
  height: 84px;
  padding: 13px 16px;
  display: flex;
  box-shadow: 0 20px 60px #0000002e;
}
.login-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.login-brand h1 {
  letter-spacing: -0.055em;
  max-width: 650px;
  margin: 22px 0 16px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
}
.login-brand p {
  color: #bed0dc;
  max-width: 600px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.login-brand > small {
  color: #839cad;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.login-form-side {
  background: #fbfcfc;
  place-items: center;
  padding: 36px;
  display: grid;
}
.login-form {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  width: min(420px, 100%);
  padding: 42px;
  box-shadow: 0 25px 70px #0f23351a;
}
.login-form h2 {
  letter-spacing: -0.03em;
  margin: 9px 0 7px;
  font-size: 32px;
}
.login-form > p {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.55;
}
.login-form label {
  color: var(--navy);
  gap: 8px;
  margin-top: 17px;
  font-size: 11px;
  font-weight: 800;
  display: grid;
}
.login-form input,
.new-user-form input,
.new-user-form select,
.admin-toolbar input {
  width: 100%;
  height: 44px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfdbe1;
  border-radius: 9px;
  outline: none;
  padding: 0 13px;
}
.login-form input:focus,
.new-user-form input:focus,
.new-user-form select:focus,
.admin-toolbar input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px #0e9ca41c;
}
.primary-button {
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 45px;
  margin-top: 22px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s;
  display: flex;
}
.primary-button:hover {
  background: #0d3555;
  transform: translateY(-1px);
}
.primary-button.compact {
  background: var(--teal);
  width: auto;
  min-height: 35px;
  margin: 0;
  padding: 0 13px;
  font-size: 10px;
}
.forgot-button {
  color: var(--teal);
  background: 0 0;
  border: 0;
  margin: 17px auto 0;
  font-size: 11px;
  font-weight: 700;
  display: block;
}
.login-error {
  color: #9f3030;
  background: #fff0f0;
  border-radius: 8px;
  margin-top: 14px;
  padding: 10px 12px;
  font-size: 11px;
}
.security-note {
  text-align: center;
  color: #8695a1 !important;
  margin: 18px 0 0 !important;
  font-size: 10px !important;
}
.password-rule {
  color: var(--muted);
  margin-top: 7px;
  font-size: 9px;
  display: block;
}
.setup-form {
  padding-top: 34px;
  padding-bottom: 34px;
}
.setup-form h2 {
  font-size: 28px;
}
.startup-state {
  min-height: 100vh;
  color: var(--muted);
  text-align: center;
  background: #f4f7f8;
  place-content: center;
  justify-items: center;
  gap: 16px;
  padding: 32px;
  display: grid;
}
.startup-state img {
  background: #fff;
  border-radius: 16px;
  width: min(280px, 70vw);
  padding: 16px 20px;
  box-shadow: 0 18px 45px #071a2f1a;
}
.startup-state h1 {
  max-width: 620px;
  color: var(--navy);
  margin: 8px 0 0;
  font-size: 28px;
}
.startup-state p {
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}
.startup-state.error {
  background: #fff8f7;
}
.admin-view {
  max-width: 1480px;
}
.notice-bar {
  color: #17684e;
  background: #ecfaf5;
  border: 1px solid #bde6d8;
  border-radius: 10px;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  margin-bottom: 14px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}
.notice-bar > span {
  color: #fff;
  background: #2dbb85;
  border-radius: 50%;
  place-items: center;
  width: 21px;
  height: 21px;
  display: grid;
}
.notice-bar button {
  color: #397562;
  background: 0 0;
  border: 0;
  margin-left: auto;
  font-size: 18px;
}
.admin-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
  display: grid;
}
.admin-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(290px, 0.63fr);
  align-items: start;
  gap: 18px;
  display: grid;
}
.new-user-form {
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
  grid-template-columns: 1.1fr 1.25fr 0.9fr 0.72fr 1fr auto;
  gap: 9px;
  padding: 14px 18px;
  display: grid;
}
.new-user-form input,
.new-user-form select {
  height: 38px;
  font-size: 10px;
}
.admin-toolbar {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  display: flex;
}
.admin-toolbar input {
  max-width: 360px;
  height: 38px;
}
.admin-toolbar span {
  color: var(--muted);
  margin-left: auto;
  font-size: 10px;
}
.users-table td:first-child,
.users-table td:nth-child(2) {
  min-width: 180px;
}
.users-table td strong {
  font-size: 11px;
  display: block;
}
.users-table td small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 9px;
  display: block;
}
.status {
  border-radius: 99px;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 800;
  display: inline-flex;
}
.status.active {
  color: #087a57;
  background: #e8f8f1;
}
.status.suspended {
  color: #a5443c;
  background: #fceeed;
}
.row-actions {
  gap: 6px;
  display: flex;
}
.row-actions button {
  border: 1px solid var(--line);
  color: var(--navy-2);
  background: #fff;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 700;
}
.upload-content {
  text-align: center;
  padding: 32px 24px;
}
.upload-icon {
  width: 54px;
  height: 54px;
  color: var(--teal);
  background: #eaf8f8;
  border-radius: 16px;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 27px;
  font-weight: 300;
  display: grid;
}
.upload-content h4 {
  margin: 0;
  font-size: 17px;
}
.upload-content p {
  color: var(--muted);
  margin: 10px auto 18px;
  font-size: 11px;
  line-height: 1.55;
}
.upload-button {
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
}
.upload-button input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
}
.upload-content > small {
  color: #93a1ad;
  margin-top: 10px;
  font-size: 9px;
  display: block;
}
.file-summary {
  border-top: 1px solid var(--line);
  background: #f8fafb;
  gap: 4px;
  padding: 16px 20px;
  display: grid;
}
.file-summary span {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 9px;
  font-weight: 800;
}
.file-summary strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  overflow: hidden;
}
.file-summary small {
  color: var(--muted);
  font-size: 9px;
}
.data-state {
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  background: #fff;
  border-radius: 16px;
  margin: 34px;
  padding: 60px 24px;
}
.data-state.error {
  color: #a5443c;
  background: #fff7f6;
}
.official-grid {
  grid-template-columns: minmax(0, 1.65fr) minmax(310px, 0.75fr);
}
.bar-chart {
  gap: 16px;
  padding: 18px 22px 8px;
  display: grid;
}
.bar-row {
  grid-template-columns: minmax(170px, 0.72fr) minmax(180px, 1fr) 105px;
  align-items: center;
  gap: 14px;
  display: grid;
}
.bar-label {
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: grid;
}
.bar-label > span {
  width: 24px;
  height: 24px;
  color: var(--teal);
  background: #eaf7f7;
  border-radius: 7px;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  display: grid;
}
.bar-label strong {
  text-overflow: ellipsis;
  color: var(--ink);
  white-space: nowrap;
  font-size: 11px;
  overflow: hidden;
}
.bar-label small {
  color: var(--muted);
  font-size: 9px;
}
.bar-track {
  background: #eaf0f2;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}
.bar-track i {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  height: 100%;
  display: block;
}
.bar-value {
  color: var(--ink);
  text-align: right;
  font-size: 10px;
  font-weight: 800;
}
.concentration-panel {
  overflow: hidden;
}
.market-leaders {
  padding: 2px 20px;
}
.market-leaders article {
  border-bottom: 1px solid #e9eff2;
  gap: 5px;
  padding: 18px 0;
  display: grid;
}
.market-leaders span {
  color: var(--teal);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.market-leaders strong {
  font-size: 13px;
  line-height: 1.35;
}
.market-leaders small {
  color: var(--muted);
  font-size: 10px;
}
.secondary-button {
  border: 1px solid var(--line);
  width: calc(100% - 40px);
  min-height: 40px;
  color: var(--teal);
  background: #fff;
  border-radius: 9px;
  margin: 18px 20px 20px;
  font-size: 10px;
  font-weight: 800;
}
.secondary-button:hover {
  border-color: var(--teal);
  background: #f3fbfb;
}
.operations-view {
  max-width: 1480px;
}
.filter-panel {
  margin-bottom: 18px;
  padding: 18px 20px;
}
.filter-heading {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  display: flex;
}
.filter-heading h2 {
  margin: 4px 0 0;
  font-size: 20px;
}
.filters {
  grid-template-columns: 1.35fr repeat(4, minmax(135px, 1fr));
  gap: 10px;
  margin-top: 16px;
  display: grid;
}
.filters input,
.filters select {
  width: 100%;
  height: 42px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfdbe1;
  border-radius: 9px;
  outline: none;
  padding: 0 12px;
  font-size: 10px;
}
.filters input:focus,
.filters select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px #0e9ca41c;
}
.filter-summary {
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding-top: 13px;
  display: flex;
}
.filter-summary strong,
.filter-summary span {
  color: #176c71;
  background: #eef6f6;
  border-radius: 7px;
  padding: 6px 9px;
  font-size: 10px;
}
.filter-summary strong {
  color: #fff;
  background: var(--navy);
}
.official-table {
  overflow: hidden;
}
.official-table table {
  min-width: 1180px;
}
.official-table th,
.official-table td {
  padding: 13px 15px;
}
.official-table th:nth-child(-n + 3),
.official-table td:nth-child(-n + 3) {
  text-align: right;
  width: 125px;
}
.official-table th:nth-child(n + 4),
.official-table td:nth-child(n + 4) {
  text-align: left;
  min-width: 170px;
}
.official-table td {
  color: #31465a;
  font-size: 10px;
}
.official-table td:nth-child(-n + 3) {
  color: var(--ink);
  font-weight: 700;
}
.pagination {
  min-height: 58px;
  color: var(--muted);
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  font-size: 10px;
  display: flex;
}
.pagination div {
  gap: 7px;
  display: flex;
}
.pagination button {
  border: 1px solid var(--line);
  min-height: 34px;
  color: var(--navy);
  background: #fff;
  border-radius: 7px;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
.actors-view {
  max-width: 1320px;
}
.actors-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
  display: grid;
}
.ranking-list {
  padding: 4px 20px 14px;
}
.ranking-row {
  border-bottom: 1px solid #e9eff2;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  display: grid;
}
.ranking-row:last-child {
  border-bottom: 0;
}
.ranking-number {
  color: #a1adb7;
  font-size: 10px;
  font-weight: 800;
}
.ranking-row div {
  min-width: 0;
}
.ranking-row strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  display: block;
  overflow: hidden;
}
.ranking-row small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 9px;
  display: block;
}
.ranking-share {
  color: #087a57;
  text-align: center;
  background: #e9f8f2;
  border-radius: 7px;
  min-width: 55px;
  padding: 5px 7px;
  font-size: 9px;
  font-weight: 800;
}
.prices-view {
  max-width: 1480px;
}
.market-price-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, #f5b62d38, #0000 24%),
    linear-gradient(115deg, #071a2f, #0b3250);
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  min-height: 190px;
  padding: 30px 34px;
  display: flex;
  box-shadow: 0 18px 45px #071a2f29;
}
.market-price-hero h2 {
  letter-spacing: -0.04em;
  max-width: 780px;
  margin: 17px 0 9px;
  font-size: clamp(26px, 3vw, 39px);
}
.market-price-hero p {
  color: #b9cad5;
  max-width: 760px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
.price-update-badge {
  border-left: 1px solid #ffffff29;
  gap: 5px;
  min-width: 225px;
  padding: 18px 22px;
  display: grid;
}
.price-update-badge span {
  color: #9db4c3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.price-update-badge strong {
  font-size: 20px;
}
.price-update-badge small {
  color: #68e0c1;
  font-size: 10px;
  font-weight: 700;
}
.reference-price-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  display: grid;
}
.reference-price-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  background: #fff;
  border-radius: 15px;
  flex-direction: column;
  min-height: 220px;
  padding: 21px 22px;
  display: flex;
  box-shadow: 0 8px 24px #0f23350d;
}
.reference-price-card.enap-card {
  border-top-color: var(--amber);
}
.reference-price-card.spread-card {
  border-top-color: var(--navy-2);
}
.reference-card-head {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}
.reference-card-head span {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.reference-card-head i {
  color: #0a7b82;
  text-transform: uppercase;
  background: #eaf7f7;
  border-radius: 6px;
  padding: 5px 7px;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.enap-card .reference-card-head i {
  color: #9b6d0b;
  background: #fff6df;
}
.spread-card .reference-card-head i {
  color: #33546d;
  background: #edf2f5;
}
.reference-price-card > strong {
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-top: 24px;
  font-size: clamp(28px, 3vw, 39px);
}
.reference-price-card > strong small {
  color: var(--muted);
  letter-spacing: 0;
  font-size: 12px;
}
.reference-price-card > b {
  color: var(--teal);
  margin-top: 6px;
  font-size: 12px;
}
.reference-price-card > p {
  color: var(--muted);
  margin: 13px 0 0;
  font-size: 10px;
  line-height: 1.5;
}
.reference-price-card > a {
  width: max-content;
  color: var(--teal);
  margin-top: auto;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}
.formula-note {
  color: #8b99a5;
  margin-top: auto;
  font-size: 9px;
}
.price-content-grid {
  grid-template-columns: minmax(0, 1.75fr) minmax(310px, 0.7fr);
  align-items: start;
  gap: 18px;
  margin-top: 18px;
  display: grid;
}
.price-trend-panel {
  overflow: hidden;
}
.period-controls {
  align-items: center;
  gap: 5px;
  display: flex;
}
.period-controls button {
  border: 1px solid var(--line);
  min-height: 29px;
  color: var(--muted);
  background: #fff;
  border-radius: 7px;
  padding: 0 9px;
  font-size: 9px;
  font-weight: 800;
}
.period-controls button.active {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}
.price-chart-wrap {
  padding: 18px 20px 0;
  overflow-x: auto;
}
.price-chart-wrap svg {
  width: 100%;
  min-width: 700px;
  height: auto;
  display: block;
}
.price-grid-line {
  stroke: #dce5e8;
  stroke-width: 1px;
  stroke-dasharray: 4 5;
}
.price-axis-label,
.price-date-label {
  fill: #7b8b98;
  font-size: 10px;
}
.ho-price-line {
  fill: none;
  stroke: var(--amber);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ho-price-dot {
  fill: #fff;
  stroke: var(--amber);
  stroke-width: 3px;
  transition: all 0.18s;
}
.ho-price-dot.current {
  fill: var(--amber);
  stroke: #fff;
  filter: drop-shadow(0 0 5px #f5b62da6);
}
.enap-price-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.enap-price-dot {
  fill: #fff;
  stroke: var(--teal);
  stroke-width: 3px;
  transition: all 0.18s;
}
.enap-price-dot.current {
  fill: var(--teal-bright);
  stroke: #fff;
  filter: drop-shadow(0 0 5px #11b8c4a6);
}
.interactive-price-point {
  cursor: help;
}
.interactive-price-point:hover .enap-price-dot {
  r: 7;
  fill: var(--teal-bright);
  stroke: #fff;
  filter: drop-shadow(0 0 6px #11b8c4a6);
}
.interactive-price-point:hover .ho-price-dot {
  r: 7;
  fill: var(--amber);
  stroke: #fff;
  filter: drop-shadow(0 0 6px #f5b62da6);
}
.price-chart-legend {
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 2px 22px 18px;
  font-size: 9px;
  display: flex;
}
.price-chart-legend span {
  align-items: center;
  gap: 7px;
  display: flex;
}
.price-chart-legend small {
  color: #8998a4;
  margin-left: auto;
}
.price-chart-legend i {
  border-radius: 99px;
  width: 19px;
  height: 3px;
}
.legend-enap {
  background: var(--teal);
}
.legend-ho {
  background: var(--amber);
}
.reference-notes {
  overflow: hidden;
}
.reference-note-list {
  padding: 4px 20px;
}
.reference-note-list article {
  border-bottom: 1px solid #e9eff2;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  padding: 17px 0;
  display: grid;
}
.reference-note-list article > span {
  width: 28px;
  height: 28px;
  color: var(--teal);
  background: #eaf7f7;
  border-radius: 8px;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  display: grid;
}
.reference-note-list strong {
  font-size: 11px;
}
.reference-note-list p {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: 10px;
  line-height: 1.5;
}
.data-disclaimer {
  color: #7f6a37;
  background: #fff8e7;
  border-radius: 9px;
  margin: 16px 20px 20px;
  padding: 12px;
  font-size: 9px;
  line-height: 1.5;
}
.origin-pricing-panel {
  margin-bottom: 24px;
  overflow: hidden;
}
.origin-panel-heading p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 12px;
}
.origin-route-map {
  grid-template-columns: minmax(190px, 1fr) minmax(220px, 0.85fr) minmax(
      190px,
      1fr
    );
  grid-template-areas:
    "peru bolivia paraguay"
    "chile bolivia paraguay"
    ". argentina .";
  gap: 14px;
  padding: 26px;
  display: grid;
  background:
    radial-gradient(circle at center, #0aa6a412 0 24%, transparent 25%),
    linear-gradient(180deg, #f8fbfc, #f2f7f8);
}
.origin-route-card {
  color: var(--navy);
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 94px;
  padding: 16px 18px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.origin-route-card:hover,
.origin-route-card.active {
  border-color: var(--origin-color, var(--teal));
  box-shadow: 0 12px 28px #062d4614;
  transform: translateY(-2px);
}
.origin-route-card.active {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--origin-color) 10%, white),
    #fff
  );
  box-shadow:
    inset 4px 0 var(--origin-color),
    0 12px 28px #062d4614;
}
.origin-route-card span {
  color: var(--origin-color, var(--teal-dark));
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  align-items: center;
  gap: 8px;
  display: flex;
}
.origin-route-card span i {
  color: #fff;
  background: var(--origin-color, var(--teal));
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-style: normal;
  display: grid;
}
.origin-route-card strong {
  font-size: 15px;
  line-height: 1.35;
}
.origin-route-card small {
  color: var(--muted);
  margin-top: 8px;
  font-size: 10px;
  display: block;
}
.origin-peru {
  grid-area: peru;
}
.origin-chile {
  grid-area: chile;
}
.origin-paraguay {
  grid-area: paraguay;
  align-self: center;
}
.origin-argentina {
  grid-area: argentina;
}
.origin-bolivia {
  grid-area: bolivia;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, var(--navy), #0a4560);
  border-radius: 22px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 206px;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.origin-bolivia:before {
  content: "";
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  position: absolute;
}
.origin-bolivia svg {
  width: 112px;
  height: 130px;
  position: relative;
}
.origin-bolivia path {
  fill: #0ec0c6;
  stroke: #8cf6ef;
  stroke-width: 3px;
}
.origin-bolivia strong,
.origin-bolivia small {
  z-index: 1;
  position: relative;
}
.origin-bolivia strong {
  letter-spacing: 0.14em;
  font-size: 18px;
}
.origin-bolivia small {
  color: #c7e0e8;
  margin-top: 4px;
}
.origin-comparison {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 26px 20px;
}
.origin-comparison-toolbar {
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  display: flex;
}
.origin-comparison-toolbar > div > span {
  color: var(--teal-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.origin-comparison-toolbar h4 {
  color: var(--navy);
  margin: 6px 0 0;
  font-size: 21px;
}
.origin-toolbar-controls,
.origin-period-controls,
.origin-mode-controls {
  align-items: center;
  gap: 8px;
  display: flex;
}
.origin-period-controls,
.origin-mode-controls {
  background: #eef4f5;
  border-radius: 10px;
  padding: 4px;
}
.origin-period-controls button,
.origin-mode-controls button {
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 8px 11px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}
.origin-period-controls button.active,
.origin-mode-controls button.active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 5px 12px #06243b1f;
}
.origin-warning {
  color: #77551b;
  background: #fff8e7;
  border: 1px solid #f1ddaa;
  border-radius: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  font-size: 11px;
  line-height: 1.5;
}
.origin-series-legend {
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 8px;
  display: flex;
}
.origin-series-legend span {
  color: var(--muted);
  align-items: center;
  gap: 7px;
  font-size: 10px;
  display: flex;
}
.origin-series-legend i {
  border-radius: 99px;
  width: 20px;
  height: 4px;
}
.origin-chart-wrap {
  width: 100%;
  overflow-x: auto;
}
.origin-chart-wrap svg {
  width: 100%;
  min-width: 720px;
  height: auto;
  display: block;
}
.origin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  max-height: 480px;
  margin-top: 14px;
  overflow: auto;
}
.origin-history-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
  font-size: 11px;
}
.origin-history-table th {
  color: var(--navy);
  background: #eef5f6;
  padding: 12px 14px;
  text-align: right;
  position: sticky;
  top: 0;
  z-index: 1;
}
.origin-history-table th:first-child,
.origin-history-table td:first-child {
  text-align: left;
}
.origin-history-table td {
  color: #445a68;
  border-top: 1px solid #e6edef;
  padding: 10px 14px;
  text-align: right;
  white-space: nowrap;
}
.origin-history-table tbody tr:hover {
  background: #f7fafb;
}
.origin-table-limit,
.origin-benchmark-note {
  color: var(--muted);
  line-height: 1.5;
  display: block;
}
.origin-table-limit {
  background: #fff;
  padding: 10px 14px;
  position: sticky;
  bottom: 0;
}
.origin-benchmark-note {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 10px;
}
.origin-empty-state {
  color: var(--muted);
  text-align: center;
  background: #f6f9fa;
  border: 1px dashed #cbd9de;
  border-radius: 12px;
  margin-top: 16px;
  padding: 44px 20px;
}
.origin-formula-detail {
  grid-template-columns: 1.45fr 0.8fr;
  gap: 20px;
  padding: 22px 26px 26px;
  display: grid;
}
.origin-formula-cards {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}
.origin-formula-cards article {
  background: #f8fafb;
  border: 1px solid var(--line);
  border-top: 4px solid #b8c7cd;
  border-radius: 14px;
  padding: 17px;
  opacity: 0.68;
}
.origin-formula-cards article.active {
  border-top-color: var(--origin-color);
  opacity: 1;
}
.origin-formula-cards span {
  color: var(--origin-color, var(--teal));
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}
.origin-formula-cards h4 {
  color: var(--navy);
  margin: 7px 0 10px;
  font-size: 16px;
}
.origin-formula-cards p {
  color: var(--muted);
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.5;
}
.origin-formula-cards p strong {
  color: var(--navy);
}
.pricing-concepts {
  grid-template-columns: 1fr;
  gap: 12px;
  display: grid;
}
.pricing-concepts article {
  background: #f5f9fa;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.pricing-concepts strong {
  color: var(--navy);
}
.pricing-concepts p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.kpi-select {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 210px;
  padding: 10px 34px 10px 12px;
  font: inherit;
  font-weight: 700;
}
.operation-chart-note {
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 14px 22px 18px;
  font-size: 12px;
  display: block;
}
@media (width<=1100px) {
  .app-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-strip {
    align-items: flex-start;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .new-user-form,
  .login-page {
    grid-template-columns: 1fr 1fr;
  }
  .official-grid,
  .actors-grid,
  .price-content-grid {
    grid-template-columns: 1fr;
  }
  .reference-price-grid,
  .filters {
    grid-template-columns: 1fr 1fr;
  }
  .origin-route-map {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "bolivia bolivia"
      "peru paraguay"
      "chile paraguay"
      "argentina argentina";
  }
  .origin-formula-detail {
    grid-template-columns: 1fr;
  }
}
@media (width<=760px) {
  .login-page {
    display: block;
  }
  .login-brand {
    min-height: 360px;
    padding: 28px;
  }
  .login-brand h1 {
    font-size: 40px;
  }
  .login-brand p {
    font-size: 13px;
  }
  .login-logo {
    width: 210px;
    height: 68px;
  }
  .login-form-side {
    padding: 22px 14px;
  }
  .login-form {
    padding: 28px 22px;
  }
  .app-shell {
    display: block;
  }
  .sidebar {
    width: 100%;
    height: auto;
    padding: 14px;
    position: static;
  }
  .brand-card {
    width: 210px;
    height: 58px;
  }
  .sidebar-eyebrow {
    display: none;
  }
  .sidebar nav {
    margin-top: 12px;
    display: flex;
    overflow-x: auto;
  }
  .nav-item {
    width: auto;
    min-width: max-content;
  }
  .sidebar-foot {
    display: none;
  }
  .topbar {
    padding: 16px 18px;
  }
  .topbar .overline {
    display: none;
  }
  .account-chip {
    min-width: 0;
    padding: 6px;
  }
  .account-chip div,
  .chevron {
    display: none;
  }
  .dashboard-content {
    padding: 18px 14px 30px;
  }
  .hero-strip {
    min-height: 0;
    padding: 24px;
    display: block;
  }
  .hero-quote {
    border-top: 1px solid #ffffff24;
    border-left: 0;
    margin-top: 20px;
    padding: 16px 0 0;
  }
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-card {
    min-height: 112px;
  }
  .kpi-card strong {
    font-size: 22px;
  }
  .chart-caption {
    display: block;
  }
  .chart-caption small {
    margin-top: 8px;
    display: block;
  }
  .admin-preview {
    padding: 35px 18px;
  }
  .admin-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-stats,
  .new-user-form,
  .filters {
    grid-template-columns: 1fr;
  }
  .market-price-hero {
    display: block;
  }
  .price-update-badge {
    border-top: 1px solid #ffffff24;
    border-left: 0;
    margin-top: 22px;
    padding: 16px 0 0;
  }
  .reference-price-grid {
    grid-template-columns: 1fr;
  }
  .period-controls {
    margin-top: 12px;
  }
  .price-trend-panel .panel-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .bar-row {
    grid-template-columns: 1fr 88px;
  }
  .bar-label {
    grid-column: 1/-1;
  }
  .filter-summary {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  .origin-route-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "bolivia"
      "peru"
      "chile"
      "paraguay"
      "argentina";
    padding: 18px;
  }
  .origin-formula-detail,
  .origin-formula-cards,
  .pricing-concepts {
    grid-template-columns: 1fr;
  }
  .origin-formula-detail {
    padding: 18px;
  }
  .origin-comparison {
    padding: 20px 18px;
  }
  .origin-comparison-toolbar {
    align-items: flex-start;
    display: block;
  }
  .origin-toolbar-controls {
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .origin-period-controls,
  .origin-mode-controls {
    flex: 1;
  }
  .origin-period-controls button,
  .origin-mode-controls button {
    flex: 1;
  }
  .kpi-select {
    width: 100%;
    min-width: 0;
  }
}
@media (width<=460px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .topbar h1 {
    font-size: 20px;
  }
  .hero-strip h2 {
    font-size: 28px;
  }
  .chart-wrap {
    padding-left: 4px;
    padding-right: 4px;
    overflow-x: auto;
  }
  .chart-wrap svg {
    min-width: 680px;
  }
}
