:root {
  color-scheme: dark;
  --bg: #070a12;
  --bg-soft: #0d1220;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --text: #f7f9ff;
  --muted: #a8b0c4;
  --subtle: #687187;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #37e4b0;
  --accent-2: #8cf6d2;
  --success: #37e4b0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --radius-lg: 8px;
  --max: 1180px;
  --nav-h: 76px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 10%, rgba(55, 228, 176, 0.22), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(140, 246, 210, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 54%, var(--bg));
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(55, 228, 176, 0.16), transparent 26rem);
  transition: background 0.2s ease;
}

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

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(55, 228, 176, 0.45);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(55, 228, 176, 0.6);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.24s ease, border-color 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 10, 18, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  height: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 34px rgba(55, 228, 176, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--panel);
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(55, 228, 176, 0.55);
  background: var(--panel-strong);
}

.mobile-nav-toggle {
  flex: 0 0 auto;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.ledger-main {
  min-height: 100vh;
  padding: calc(var(--nav-h) + var(--space-6)) 0 var(--space-8);
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-6) 0 var(--space-7);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 750;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px var(--accent-2);
}

.page-subhead {
  max-width: 720px;
  margin-top: var(--space-4);
  color: var(--muted);
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.75;
}

.last-updated {
  margin-top: var(--space-3);
  color: var(--subtle);
  font-size: 13px;
}

.number,
.last-updated time,
td:not(:nth-child(2)),
.activity-detail,
.history-summary,
.snapshot-control select {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-variant-numeric: tabular-nums;
}

.header-controls {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  flex: 0 0 auto;
  z-index: 5;
}

.visibility-toggle {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(16px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.visibility-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(55, 228, 176, 0.55);
  background: var(--panel-strong);
}

.toggle-icon {
  color: var(--accent-2);
}

.status-panel,
.panel,
.table-shell,
.disclaimer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.status-panel {
  padding: var(--space-5);
  color: var(--muted);
}

.section-bar,
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.section-bar .eyebrow,
.panel-heading .eyebrow {
  margin-bottom: var(--space-2);
}

.section-block {
  margin-top: var(--space-8);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}

.metric-card,
.cash-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.045);
}

.metric-card {
  min-height: 150px;
  padding: 22px;
}

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

.metric-value {
  display: block;
  margin-top: 14px;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.metric-change {
  display: block;
  margin-top: 10px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.metric-change.neutral {
  color: var(--muted);
}

.cash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}

.cash-card {
  padding: 18px 20px;
}

.cash-value {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.view-controls {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.control-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-button[aria-pressed="true"] {
  border-color: rgba(55, 228, 176, 0.55);
  background: var(--panel-strong);
  color: var(--text);
}

.snapshot-control {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-control select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 34px 0 12px;
  background: var(--panel);
  color: var(--text);
}

.dashboard-grid {
  display: grid;
  gap: var(--space-4);
}

.panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
}

.allocation-layout {
  display: grid;
  place-items: center;
  gap: var(--space-5);
}

.donut-wrap {
  width: min(100%, 320px);
  position: relative;
}

.donut {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}

.donut-slice {
  cursor: pointer;
  transition: opacity 0.18s ease, stroke-width 0.18s ease;
}

.donut-slice:hover,
.donut-slice:focus {
  opacity: 1;
  stroke-width: 40;
  outline: none;
}

.donut.has-active .donut-slice:not(.is-active) {
  opacity: 0.38;
}

.donut-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.donut-center strong {
  font-size: 30px;
  line-height: 1;
}

.donut-center span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.chart-tooltip {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  padding: 7px 10px;
  border: 1px solid rgba(140, 246, 210, 0.4);
  border-radius: var(--radius);
  background: #0d1220;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
}

.donut-legend {
  width: 100%;
  max-height: 530px;
  display: grid;
  gap: 10px;
  align-content: start;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-color: var(--subtle) transparent;
  scrollbar-width: thin;
}

.legend-row {
  min-height: 44px;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.legend-row.is-active {
  border-color: rgba(140, 246, 210, 0.44);
  background: var(--panel-strong);
  color: var(--text);
}

.legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-row strong {
  color: var(--text);
}

.legend-row .number {
  font-size: 13px;
  font-weight: 800;
}

.activity-feed {
  max-height: 550px;
  display: grid;
  gap: var(--space-2);
  overflow: auto;
  padding-right: 4px;
}

.activity-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.ticker-badge {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(55, 228, 176, 0.22), rgba(140, 246, 210, 0.14));
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
}

.activity-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.activity-title strong {
  font-size: 14px;
}

.activity-title time,
.activity-account {
  color: var(--subtle);
  font-size: 11px;
}

.activity-detail {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.activity-note {
  margin-top: 8px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.table-shell {
  overflow: hidden;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: calc(11px + 1pt);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sort-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease;
}

.sort-button:hover,
.sort-button.is-active {
  color: var(--text);
}

.sort-button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

.sort-indicator {
  width: 12px;
  color: var(--accent-2);
  font-size: calc(13px + 1pt);
  line-height: 1;
  text-align: center;
}

td {
  font-size: 13px;
}

tbody tr {
  transition: background 0.18s ease;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr.is-highlighted {
  background: rgba(140, 246, 210, 0.08);
}

.holding-name {
  min-width: 230px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.holding-name-header {
  text-align: center;
}

.holding-name-header .sort-button {
  justify-content: center;
}

.holding-name strong {
  display: block;
}

.holding-quantity {
  white-space: nowrap;
  font-weight: 700;
}

.holding-conviction {
  white-space: nowrap;
}

.conviction-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.positive {
  color: var(--accent-2);
}

.negative {
  color: var(--muted);
}

.empty-state {
  padding: var(--space-5);
  color: var(--muted);
  text-align: center;
}

.history-note {
  color: var(--subtle);
  font-size: 12px;
}

.history-chart-wrap {
  width: 100%;
  overflow: hidden;
}

.history-chart {
  width: 100%;
  min-height: 220px;
  display: block;
}

.chart-grid {
  stroke: var(--line);
  stroke-width: 1;
}

.chart-area {
  fill: rgba(55, 228, 176, 0.12);
}

.chart-line {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-point {
  fill: var(--bg);
  stroke: var(--accent-2);
  stroke-width: 3;
}

.chart-label {
  fill: var(--muted);
  font-size: 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.history-summary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 12px;
}

.watchlist-grid {
  display: grid;
  gap: 14px;
}

.watch-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-3);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.watch-copy {
  min-width: 0;
}

.watch-copy div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.watch-copy p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.disclaimer {
  margin-top: var(--space-8);
  padding: 22px;
  box-shadow: none;
}

.disclaimer strong {
  font-size: 13px;
}

.disclaimer p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer {
  padding: 34px 0 42px;
  color: var(--subtle);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.float-actions {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
}

.whatsapp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #25d366;
  pointer-events: auto;
  animation: whatsapp-slide 16s ease-in-out infinite;
  will-change: transform;
}

.whatsapp svg {
  display: block;
  width: 56px;
  height: 56px;
  fill: currentColor;
  animation: whatsapp-float 3.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes whatsapp-slide {
  0%,
  12%,
  100% {
    transform: translateX(0);
  }
  48%,
  58% {
    transform: translateX(calc(0px - clamp(32px, 10vw, 120px)));
  }
  88% {
    transform: translateX(0);
  }
}

@keyframes whatsapp-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(-3px) rotate(-3deg) scale(1.03);
  }
  45% {
    transform: translateY(-10px) rotate(7deg) scale(1.08);
  }
  65% {
    transform: translateY(-4px) rotate(-5deg) scale(1.035);
  }
  82% {
    transform: translateY(-7px) rotate(4deg) scale(1.055);
  }
}

.back-to-top {
  position: absolute;
  left: 18px;
  bottom: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[hidden] {
  display: none !important;
}

@media (min-width: 620px) {
  .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cash-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .allocation-layout {
    grid-template-columns: minmax(220px, 0.8fr) minmax(180px, 1fr);
  }

  .watchlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .dashboard-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  }
}

@media (max-width: 899px) {
  :root {
    --nav-h: 68px;
    --space-8: 82px;
  }

  .page-header {
    display: grid;
  }

  .nav-links.is-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 10, 18, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open a {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open a:last-child {
    border-bottom: 0;
  }

  .nav-links.is-open a::after {
    display: none;
  }

  .header-controls {
    position: static;
  }

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

  .view-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 619px) {
  .nav,
  .container {
    width: min(100% - 24px, var(--max));
  }

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

  .ledger-main {
    padding-top: calc(var(--nav-h) + var(--space-4));
  }

  .page-header {
    padding-top: var(--space-5);
  }

  .metrics-grid,
  .cash-grid {
    grid-template-columns: 1fr;
  }

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

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

  .allocation-layout {
    grid-template-columns: 1fr;
  }

  .donut-legend {
    max-height: 206px;
  }

  .activity-feed {
    max-height: 430px;
    overscroll-behavior: contain;
  }

  .whatsapp {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
    animation: none;
    will-change: auto;
  }

  .whatsapp svg {
    width: 42px;
    height: 42px;
  }

  .back-to-top {
    left: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
