* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #07111f;
  color: #fff;
}
.page {
  max-width: 1200px;
  margin: auto;
  padding: 24px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0d2a55, #06111f);
  border: 1px solid #183a69;
  padding: 22px;
  border-radius: 18px;
}
h1, h2, h3 { margin: 0; }
header p { color: #a9c7ef; margin-bottom: 0; }
.badge {
  background: #f7c948;
  color: #111;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 700;
}
.filters {
  margin: 20px 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: end;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #bdd4f4;
}
input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #24496f;
  background: #0b1829;
  color: #fff;
}
button {
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.top-card, .card {
  background: #0b1829;
  border: 1px solid #24496f;
  border-radius: 18px;
  padding: 20px;
}
.top-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.top-card p { color: #c8d7eb; }
.confidence {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 12px solid #16a34a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.confidence span {
  font-size: 34px;
  font-weight: 800;
}
.confidence small { color: #c8d7eb; }
.grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.price {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}
.level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.level {
  background: #07111f;
  border: 1px solid #284a72;
  border-radius: 12px;
  padding: 12px;
}
.level span {
  display: block;
  color: #9fb9d9;
  font-size: 13px;
}
.level strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}
.greenText { color: #22c55e; }
.redText { color: #ef4444; }
.yellowText { color: #facc15; }
.reason {
  margin-top: 16px;
  color: #c8d7eb;
  line-height: 1.5;
}
.option-card { margin-top: 20px; }
@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  .top-card { flex-direction: column; align-items: flex-start; }
}


.live-button {
  background: #dc2626;
  border: 1px solid #ff6b6b;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.18);
  min-width: 105px;
}

.live-button:hover {
  background: #ef4444;
}

.live-button:disabled {
  opacity: 0.7;
  cursor: wait;
}



.market-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.market-top-row h3 {
  margin: 0;
  font-size: 28px;
  justify-self: start;
}

.market-top-row .price {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  justify-self: center;
}

.market-inline-view {
  font-size: 19px;
  font-weight: 700;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .market-top-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .market-top-row h3,
  .market-top-row .price,
  .market-inline-view {
    justify-self: start;
    text-align: left;
  }

  .market-top-row h3 {
    font-size: 19px;
  }

  .market-top-row .price {
    font-size: 21px;
  }

  .market-inline-view {
    font-size: 14px;
  }
}

/* Keep index name, price and view on one clean row */
.market-top-row {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  column-gap: 24px;
  width: 100%;
}

.market-top-row h3 {
  white-space: nowrap;
  word-break: normal;
  min-width: max-content;
}

.market-top-row .price {
  justify-self: center;
  white-space: nowrap;
}

.market-inline-view {
  justify-self: end;
  white-space: nowrap;
}



/* Top weighted stock confirmation */
.stock-section-title {
  margin-bottom: 14px;
}

.stock-confirmation-grid {
  align-items: start;
}

.stock-confirmation-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.stock-confirmation-metric {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.28);
}

.stock-confirmation-metric span {
  font-size: 12px;
  opacity: 0.78;
}

.stock-confirmation-metric strong {
  font-size: 16px;
}

.stock-confirmation-list {
  display: flex;
  flex-direction: column;
}

.stock-confirmation-row {
  display: grid;
  grid-template-columns:
    minmax(105px, 0.8fr)
    minmax(125px, 1fr)
    minmax(190px, 1.4fr);
  align-items: center;
  gap: 14px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.stock-confirmation-row:last-child {
  border-bottom: 0;
}

.stock-confirmation-symbol {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stock-confirmation-symbol strong {
  white-space: nowrap;
}

.stock-confirmation-symbol small {
  font-size: 11px;
  opacity: 0.72;
}

.stock-confirmation-view {
  font-size: 14px;
  font-weight: 700;
}

.stock-confirmation-levels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  text-align: right;
}

.stock-warning {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .stock-confirmation-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stock-confirmation-row {
    grid-template-columns: 1fr 1fr;
  }

  .stock-confirmation-levels {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .stock-confirmation-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stock-confirmation-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stock-confirmation-levels {
    grid-column: auto;
  }
}


/* Stock confirmation loading spinner */
.stock-loading-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  margin-top: 10px;
  border: 1px solid rgba(250, 204, 21, 0.30);
  border-radius: 12px;
  background: rgba(250, 204, 21, 0.06);
}

.stock-loading-spinner {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 4px solid rgba(250, 204, 21, 0.22);
  border-top-color: #facc15;
  border-radius: 50%;
  animation: stockLoadingSpin 0.8s linear infinite;
}

.stock-loading-text {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.5;
}

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


/* New NIFTY / BANK NIFTY analysis layout */
.market-cmp-wrap {
  text-align: center;
}

.market-cmp-wrap .price {
  line-height: 1;
}

.market-cmp-wrap small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.72;
}

.market-analysis-columns {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(145px, 0.82fr)
    minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.market-direction-panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  background: rgba(5, 15, 30, 0.34);
}

.downside-panel {
  border-color: rgba(34, 197, 94, 0.65);
  box-shadow: inset 0 0 20px rgba(34, 197, 94, 0.05);
}

.neutral-panel {
  display: flex;
  flex-direction: column;
  border-color: rgba(59, 130, 246, 0.72);
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.07);
}

.upside-panel {
  border-color: rgba(239, 68, 68, 0.68);
  box-shadow: inset 0 0 20px rgba(239, 68, 68, 0.05);
}

.market-direction-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.downside-icon {
  color: #22c55e;
}

.neutral-icon {
  color: #93c5fd;
}

.upside-icon {
  color: #ef4444;
}

.market-section-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.market-section-block span,
.no-trade-content span {
  font-size: 14px;
  opacity: 0.86;
}

.market-main-level {
  font-size: 18px;
  line-height: 1.3;
}

.market-trigger-level {
  font-size: 21px;
}

.market-section-divider {
  height: 1px;
  margin: 15px 0;
  background: rgba(148, 163, 184, 0.25);
}

.target-section-title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.target-step-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.target-step-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
}

.target-step-row span {
  display: grid;
  place-items: center;
  height: 100%;
  border-right: 1px solid rgba(148, 163, 184, 0.25);
  font-weight: 800;
}

.target-step-row strong {
  padding: 6px 9px;
  text-align: center;
  white-space: nowrap;
}

.no-trade-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.no-trade-content strong {
  font-size: 22px;
  line-height: 1.45;
}

.compact-market-reason {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  line-height: 1.65;
}

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

  .neutral-panel {
    grid-column: 1 / -1;
    min-height: 150px;
  }
}

@media (max-width: 650px) {
  .market-analysis-columns {
    grid-template-columns: 1fr;
  }

  .neutral-panel {
    grid-column: auto;
  }

  .market-main-level {
    font-size: 17px;
  }

  .no-trade-content strong {
    font-size: 20px;
  }
}


/* intraday-meter-v2 */
.intraday-meter-badge{
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #111827;
  line-height: 1.1;
}
.intraday-meter-title{
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}
.intraday-meter-state{
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}
.intraday-meter-state.bullish{ color: #166534; }
.intraday-meter-state.bearish{ color: #991b1b; }
.intraday-meter-state.sideways{ color: #6b4f00; }

.intraday-meter-loading{
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.intraday-meter-track{
  position: relative;
  width: 220px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #22c55e 100%);
  overflow: visible;
}

.intraday-meter-pointer{
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #111827;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(17,24,39,.15);
}

@media (max-width: 768px){
  .intraday-meter-badge{
    min-width: auto;
  }
  .intraday-meter-track{
    width: 180px;
  }
}
/* mini-semicircle-meter-v4 */ .badge.meter-host{width:340px!important;max-width:340px!important;padding:0!important;background:transparent!important;box-shadow:none!important;border-radius:24px!important}.intraday-meter-badge{width:100%!important;min-width:0!important}.mini-mood-meter{width:100%;box-sizing:border-box;padding:8px 10px 7px;border:1px solid rgba(148,163,184,.28);border-radius:24px;background:#f8fafc;color:#111827;box-shadow:0 7px 20px rgba(0,0,0,.14)}.mini-mood-title{text-align:center;color:#1f2937;font-size:15px;font-weight:900;text-transform:uppercase}.mini-gauge{position:relative;width:290px;height:116px;margin:0 auto;overflow:hidden}.mini-gauge-scale{position:absolute;width:250px;height:250px;left:20px;top:12px;border-radius:50%;background:conic-gradient(from 270deg,#ef4444 0deg 36deg,#f97316 36deg 72deg,#eab308 72deg 108deg,#84cc16 108deg 144deg,#22c55e 144deg 180deg,transparent 180deg 360deg)}.mini-gauge-scale:after{content:"";position:absolute;width:206px;height:206px;left:22px;top:22px;border-radius:50%;background:#f8fafc}.mini-label{position:absolute;z-index:3;max-width:80px;font-size:6px;font-weight:900;line-height:1.05;text-align:center;text-transform:uppercase}.mini-label-1{left:3px;bottom:8px;color:#ef4444;transform:rotate(-76deg)}.mini-label-2{left:33px;top:35px;color:#f97316;transform:rotate(-38deg)}.mini-label-3{left:50%;top:5px;color:#d69e00;transform:translateX(-50%)}.mini-label-4{right:25px;top:34px;color:#65a30d;transform:rotate(38deg)}.mini-label-5{right:2px;bottom:8px;color:#16a34a;transform:rotate(76deg)}.mini-needle{position:absolute;width:5px;height:72px;left:50%;bottom:0;z-index:5;border-radius:7px;transform-origin:50% 100%;transition:transform .7s ease}.mini-hub{position:absolute;width:16px;height:16px;left:50%;bottom:-1px;z-index:6;transform:translateX(-50%);border:3px solid #fff;border-radius:50%}.mini-score{text-align:center;font-size:28px;font-weight:900;line-height:1}.mini-overall{text-align:center;color:#6b7280;font-size:11px;font-weight:700}.mini-confirmations{text-align:center;color:#9ca3af;font-size:9px;font-weight:700}@media(max-width:900px){.badge.meter-host{width:100%!important;max-width:360px!important}}


/* mini meter transparent background fix */
#intradayMeterBadge,
.intraday-meter-badge,
.badge.meter-host,
.mini-meter-card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

#intradayMeterBadge .meter-card,
#intradayMeterBadge .meter-wrap,
#intradayMeterBadge .meter-shell,
#intradayMeterBadge .meter-panel {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}


/* transparent mini meter v6 */
.mini-mood-meter{background:transparent!important;border:none!important;box-shadow:none!important;color:#fff!important}.mini-gauge-scale:after{background:#0d274b!important}.mini-mood-title{color:#fff!important}.mini-overall{color:#e2e8f0!important}.mini-confirmations{color:#94a3b8!important}



/* intraday-meter-transparent-v6 */
.intraday-meter-badge,
.badge-meter-host {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 280px !important;
  min-width: 280px !important;
  height: 170px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.intraday-meter-badge > *,
.badge-meter-host > * {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.intraday-meter-badge svg,
.badge-meter-host svg,
.intraday-meter-badge canvas,
.badge-meter-host canvas {
  background: transparent !important;
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
}

.intraday-meter-badge .mini-meter-wrap,
.intraday-meter-badge .mini-meter-card,
.intraday-meter-badge .meter-card,
.badge-meter-host .mini-meter-wrap,
.badge-meter-host .mini-meter-card,
.badge-meter-host .meter-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  .intraday-meter-badge,
  .badge-meter-host {
    width: 220px !important;
    min-width: 220px !important;
    height: 135px !important;
  }
}


/* curved-transparent-meter-v7 */
.badge.meter-host {
  width: 350px !important;
  max-width: 350px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.intraday-meter-badge {
  width: 100% !important;
  min-width: 0 !important;
  background: transparent !important;
}

.curved-mini-meter {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.curved-mini-title {
  margin-bottom: -4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.curved-mini-svg {
  width: 100%;
  height: 185px;
  display: block;
  overflow: visible;
  background: transparent;
}

.curved-meter-arc {
  fill: none;
  stroke-width: 16;
  stroke-linecap: butt;
}

.arc-bearish {
  stroke: #ef4444;
}

.arc-neutral-bearish {
  stroke: #f97316;
}

.arc-sideways {
  stroke: #eab308;
}

.arc-neutral-bullish {
  stroke: #84cc16;
}

.arc-bullish {
  stroke: #22c55e;
}

.curved-meter-label {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15px;
}

.label-bearish {
  fill: #ef4444;
}

.label-neutral-bearish {
  fill: #f97316;
}

.label-sideways {
  fill: #facc15;
}

.label-neutral-bullish {
  fill: #84cc16;
}

.label-bullish {
  fill: #22c55e;
}

.curved-meter-needle {
  stroke-width: 5;
  stroke-linecap: round;
}

.curved-meter-needle-group {
  transition: transform 0.8s ease;
  transform-origin: 160px 138px;
}

.curved-meter-hub {
  stroke: #ffffff;
  stroke-width: 3;
}

.curved-meter-score {
  font-size: 22px;
  font-weight: 900;
}

.curved-meter-overall {
  fill: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.curved-meter-footer {
  fill: #94a3b8;
  font-size: 8px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .badge.meter-host {
    width: 310px !important;
    max-width: 310px !important;
  }

  .curved-mini-svg {
    height: 170px;
  }
}

/* compact-linear-meter-v10 */
.badge.meter-host.linear-meter-host {
  width: 410px !important;
  max-width: 410px !important;
  min-width: 410px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.linear-meter-host .intraday-meter-badge {
  width: 100% !important;
  min-width: 0 !important;
  background: transparent !important;
}

.linear-mood-meter {
  width: 100%;
  box-sizing: border-box;
  padding: 4px 2px 2px;
  background: transparent;
  color: #ffffff;
}

.linear-mood-title {
  margin-bottom: 7px;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.linear-mood-labels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  margin-bottom: 5px;
  text-align: center;
  font-size: 6.5px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.linear-mood-labels span:nth-child(1) { color: #ef4444; }
.linear-mood-labels span:nth-child(2) { color: #f97316; }
.linear-mood-labels span:nth-child(3) { color: #facc15; }
.linear-mood-labels span:nth-child(4) { color: #84cc16; }
.linear-mood-labels span:nth-child(5) { color: #22c55e; }

.linear-mood-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: 14px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
}

.linear-zone {
  height: 100%;
  border-right: 2px solid rgba(255,255,255,.85);
}

.linear-zone:first-child {
  border-radius: 999px 0 0 999px;
}

.linear-zone:last-of-type {
  border-right: 0;
  border-radius: 0 999px 999px 0;
}

.zone-bearish { background: #ef4444; }
.zone-neutral-bearish { background: #f97316; }
.zone-sideways { background: #eab308; }
.zone-neutral-bullish { background: #84cc16; }
.zone-bullish { background: #22c55e; }

.linear-mood-pointer {
  position: absolute;
  top: -8px;
  width: 4px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.30);
  transition: left .7s ease;
}

.linear-mood-pointer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #0d274b;
}

.linear-mood-result {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  line-height: 1;
}

.linear-mood-result strong {
  font-size: 20px;
  font-weight: 900;
}

.linear-mood-result span {
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 700;
}

.linear-mood-footer {
  margin-top: 4px;
  color: #94a3b8;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 900px) {
  .badge.meter-host.linear-meter-host {
    width: 100% !important;
    max-width: 410px !important;
    min-width: 0 !important;
  }
}

/* compact-linear-meter-v11 */
.badge.meter-host.linear-meter-host{width:240px!important;max-width:240px!important;min-width:240px!important}.linear-mood-meter{width:240px!important;padding:3px 0 2px!important}.linear-mood-title{font-size:12px!important;margin-bottom:6px!important}.linear-mood-labels{font-size:4.8px!important;gap:1px!important}.linear-mood-track{height:11px!important}.linear-mood-pointer{height:24px!important;top:-7px!important}.linear-mood-result{gap:5px!important;margin-top:6px!important}.linear-mood-result strong{font-size:15px!important}.linear-mood-result span{font-size:8px!important}.linear-mood-footer{font-size:6px!important;margin-top:3px!important}@media(max-width:900px){.badge.meter-host.linear-meter-host{width:240px!important;max-width:240px!important;min-width:0!important}}

/* compact-header-box-v12 */
header{height:auto!important;min-height:0!important;padding:14px 22px!important;align-items:center!important}header>div:first-child{margin:0!important;padding:0!important}header .badge{margin:0!important;align-self:center!important}

/* actual-header-height-fix-v13 */
header{height:auto!important;min-height:0!important;padding:10px 22px!important}header .badge,header .intraday-meter-badge{height:auto!important;min-height:0!important}header .badge{display:flex!important;align-items:center!important;justify-content:center!important}header>div:first-child{margin:0!important}header h1{margin-top:0!important}header p{margin-bottom:0!important}


/* generate-view-button-state-v16 */
#generateViewButton:disabled {
  cursor: wait !important;
  opacity: 0.72 !important;
  transform: none !important;
}

/* backtest-button-v18 */
.backtest-nav-button{display:inline-flex;align-items:center;justify-content:center;padding:9px 14px;background:#1565c0;border:1px solid #3976aa;border-radius:8px;color:#fff!important;text-decoration:none;font-weight:700;white-space:nowrap}.backtest-nav-button:hover{background:#1976d2}
