/* Options Simulator — professional trader workspace (NT tokens) */
.os-pro {
  --os-brand: var(--nt-brand, #1F86F0);
  --os-brand-soft: var(--nt-brand-soft, #ECF5FE);
  --os-ink: var(--nt-ink, #0F172A);
  --os-muted: var(--nt-muted, #64748B);
  --os-soft: var(--nt-soft, #F4F7FB);
  --os-border: var(--nt-border, #E4EAF1);
  --os-up: var(--nt-up, #0FB37D);
  --os-down: var(--nt-down, #EF4444);
  --os-radius: var(--nt-radius, 12px);
  --os-radius-lg: var(--nt-radius-lg, 16px);
  --os-shadow: var(--nt-shadow-card, 0 1px 2px rgba(15, 23, 42, 0.04), 0 24px 48px -12px rgba(15, 23, 42, 0.12));
  --profitColor: #0FB37D;
  --lossColor: #EF4444;
  --dividerColor: #CBD5E1;
  font-family: var(--nt-font, "Poppins", system-ui, sans-serif);
  color: var(--os-ink);
  padding: 0 clamp(1.25rem, 3.5vw, 2.75rem) 2.5rem;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  box-sizing: border-box;
}

.os-pro *,
.os-pro *::before,
.os-pro *::after {
  box-sizing: border-box;
}

.os-pro .os-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0 0.75rem;
  border-bottom: 1px solid var(--os-border);
  margin-bottom: 0.75rem;
  width: 100%;
}

.os-pro .os-hero h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--os-ink);
}

.os-pro .os-hero .os-subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--os-muted);
  font-weight: 500;
  max-width: 48rem;
}

.os-pro .os-panel {
  background: #fff;
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius-lg);
  box-shadow: var(--os-shadow);
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  width: 100%;
}

.os-pro .os-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: end;
  width: 100%;
}

.os-pro .os-controls-left,
.os-pro .os-controls-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-end;
}

.os-pro .os-field {
  position: relative;
  min-width: 7.5rem;
}

.os-pro .os-field label,
.os-pro .textOnInput.os-field > label,
.os-pro .os-field .form-label {
  position: static !important;
  display: block !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--os-muted) !important;
  margin: 0 0 0.3rem !important;
  padding: 0 !important;
  top: auto !important;
  left: auto !important;
}

.os-pro .os-field .form-select,
.os-pro .os-field input[type="date"],
.os-pro .os-field input[type="text"] {
  border: 1px solid var(--os-border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--os-ink);
  padding: 0.4rem 0.65rem;
  background: #fff;
  min-height: 38px;
  width: 100%;
  box-shadow: none !important;
}

.os-pro .os-field .form-select:focus,
.os-pro .os-field input:focus {
  border-color: var(--os-brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 134, 240, 0.15) !important;
}

.os-pro .os-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.os-pro .os-kpi {
  background: var(--os-soft);
  border: 1px solid var(--os-border);
  border-radius: 10px;
  padding: 0.35rem 0.65rem;
  min-width: 4.75rem;
}

.os-pro .os-kpi .os-kpi-label,
.os-pro .os-kpi .title_lot_size,
.os-pro .os-kpi .title_pcr,
.os-pro .os-kpi .title_spot {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--os-muted);
  margin: 0;
}

.os-pro .os-kpi .os-kpi-value,
.os-pro .os-kpi .lot_size_value,
.os-pro .os-kpi .pcr_value,
.os-pro .os-kpi .spot_value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--os-ink);
  margin: 0.1rem 0 0;
  line-height: 1.2;
  min-height: 1.2em;
}

.os-pro #saveStrategies {
  border: 1px solid var(--os-border);
  background: #fff;
  color: var(--os-ink);
  border-radius: 10px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.35rem;
  min-height: 38px;
  transition: border-color 0.15s, background 0.15s;
}

.os-pro #saveStrategies:hover {
  border-color: var(--os-brand);
  background: var(--os-brand-soft);
  color: var(--os-brand);
}

/* Replay scrubber — equal width columns so date/time stays centered */
.os-pro .os-scrubber.time_buttons {
  display: flex !important;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  width: 100%;
  background: linear-gradient(180deg, #fff 0%, var(--os-soft) 100%);
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius);
}

.os-pro .os-scrubber-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
}

.os-pro .os-session-rail {
  width: 100%;
  padding: 0.15rem 0.15rem 0.35rem;
}

.os-pro .os-session-rail-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--os-muted);
  letter-spacing: 0.02em;
}

.os-pro .os-session-rail-labels .os-session-now {
  color: var(--os-brand);
  font-variant-numeric: tabular-nums;
}

.os-pro .os-session-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.os-pro #osSessionSlider {
  width: 100%;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.os-pro #osSessionSlider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--os-brand) 0%, var(--os-brand) var(--os-session-pct, 0%), #E4EAF1 var(--os-session-pct, 0%), #E4EAF1 100%);
}

.os-pro #osSessionSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--os-brand);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(31, 134, 240, 0.45);
}

.os-pro #osSessionSlider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #E4EAF1;
}

.os-pro #osSessionSlider::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--os-brand);
}

.os-pro #osSessionSlider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--os-brand);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(31, 134, 240, 0.45);
}

.os-pro .os-play-btn {
  border: none;
  background: var(--os-ink);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  min-height: 36px;
}

.os-pro .os-play-btn.is-playing {
  background: var(--os-down);
}

.os-pro .os-play-btn:hover {
  filter: brightness(1.08);
}

.os-pro .os-speed-select {
  border: 1px solid var(--os-border);
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--os-ink);
  background: #fff;
  min-height: 36px;
}

.os-pro .os-play-hint {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--os-muted);
}

.os-pro .left_option_simulator_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-start;
}

.os-pro .right_option_simulator_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
}

.os-pro .left_option_simulator_btn button,
.os-pro .right_option_simulator_btn button {
  border: 1px solid var(--os-border);
  background: #fff;
  color: var(--os-ink);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.32rem 0.55rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.os-pro .left_option_simulator_btn button:hover,
.os-pro .right_option_simulator_btn button:hover {
  background: var(--os-brand);
  border-color: var(--os-brand);
  color: #fff;
}

.os-pro .middle_date_time {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  gap: 0.5rem !important;
  white-space: nowrap;
  min-width: 12rem;
  line-height: 1 !important;
  padding: 0.25rem 0.5rem;
  align-self: center;
}

.os-pro .middle_date_time .date_formated,
.os-pro .middle_date_time .time_formated {
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  vertical-align: middle;
  letter-spacing: 0;
}

.os-pro .middle_date_time .date_formated {
  color: var(--os-ink);
}

.os-pro .middle_date_time .time_formated {
  color: var(--os-brand);
  font-variant-numeric: tabular-nums;
}

.os-pro .os-strategy-catalog {
  margin-top: 0;
}

.os-pro .os-strategy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid var(--os-border);
  padding-bottom: 0.45rem;
}

.os-pro .os-strategy-tab {
  border: none;
  background: transparent;
  color: var(--os-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

.os-pro .os-strategy-tab.active {
  background: var(--os-brand-soft);
  color: var(--os-brand);
}

.os-pro .os-strategy-grid {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 5.75rem;
  align-content: flex-start;
}

.os-pro .os-strategy-grid.active {
  display: flex;
}

.os-pro .option_simulator_strategy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 6.75rem;
  min-height: 5.35rem;
  border: 1px solid var(--os-border);
  background: #fff;
  color: var(--os-ink);
  border-radius: 10px;
  padding: 0.4rem 0.35rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  user-select: none;
}

.os-pro .option_simulator_strategy .os-strat-icon {
  width: 62px;
  height: 45px;
  flex-shrink: 0;
}

.os-pro .option_simulator_strategy .os-strat-icon svg {
  width: 62px;
  height: 45px;
  display: block;
}

.os-pro .option_simulator_strategy .os-strat-label {
  line-height: 1.15;
  max-width: 100%;
}

.os-pro .option_simulator_strategy:hover {
  border-color: var(--os-brand);
  background: var(--os-brand-soft);
}

.os-pro .option_simulator_strategy.simulator_active_strategy {
  background: #fff;
  border-color: var(--os-brand);
  color: var(--os-ink);
  box-shadow: 0 0 0 2px rgba(31, 134, 240, 0.25);
}

.os-pro .option_simulator_strategy.simulator_active_strategy .os-strat-label {
  color: var(--os-brand);
}

/* Analysis workspace — full width; left positions + right payoff fill the row */
.os-pro .main_option_strategy {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

#osAnalysisShell[hidden],
#osAnalysisShell:not(.is-open) {
  display: none !important;
}

#osAnalysisShell.is-open {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0.75rem 0 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  float: none !important;
  clear: both !important;
}

#osAnalysisShell .os-workspace-grid {
  display: grid !important;
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr) !important;
  gap: 0.85rem !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 520px;
  box-sizing: border-box !important;
  align-items: stretch !important;
}

#osAnalysisShell .os-workspace-positions {
  grid-column: 1 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  padding-left: 13px !important;
  padding-right: 13px !important;
  box-sizing: border-box !important;
}

#osAnalysisShell .os-workspace-chart {
  grid-column: 2 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  padding-left: 13px !important;
  padding-right: 13px !important;
  box-sizing: border-box !important;
}

#osAnalysisShell .left_main_strategy,
#osAnalysisShell .right_table_greeks {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: none !important;
  float: none !important;
  box-sizing: border-box !important;
}

.os-pro .left_main_strategy,
.os-pro .right_table_greeks {
  background: #fff;
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius-lg);
  box-shadow: var(--os-shadow);
  padding: 0.85rem 1rem;
  min-height: 520px;
  height: auto;
}

.os-pro .left_inner_data_edit_del {
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.os-pro .left_inner_data_edit_del > p.fw-bold {
  white-space: nowrap;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.os-pro .os-risk-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.65rem 0 0.35rem;
}

.os-pro .os-risk-tile {
  background: var(--os-soft);
  border: 1px solid var(--os-border);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  min-height: 3.4rem;
}

.os-pro .os-risk-tile span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--os-muted);
}

.os-pro .os-risk-tile strong,
.os-pro .os-risk-tile #max_profit,
.os-pro .os-risk-tile #max_loss,
.os-pro .os-risk-tile #break_evens,
.os-pro .os-risk-tile #ratio,
.os-pro .os-risk-tile #left_p_l_main,
.os-pro .os-risk-tile #net_credit_value {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--os-ink);
  min-height: 1.2em;
  word-break: break-word;
}

.os-pro .os-risk-tile .text-green,
.os-pro #max_profit {
  color: var(--os-up) !important;
}

.os-pro .os-risk-tile .text-danger,
.os-pro #max_loss {
  color: var(--os-down) !important;
}

.os-pro .filter_main_pl_greeks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.65rem;
}

.os-pro .filter_main_pl_greeks > div {
  border: 1px solid var(--os-border);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--os-muted);
  background: #fff;
  cursor: pointer;
}

.os-pro .filter_main_pl_greeks .filter_active_pl_greeks {
  background: var(--os-ink);
  border-color: var(--os-ink);
  color: #fff;
}

.os-pro #chartdiv,
.os-pro .os-payoff-wrap {
  width: 100%;
  height: 400px;
  min-height: 400px;
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(31, 134, 240, 0.06), transparent 55%),
    linear-gradient(180deg, #fafbfd 0%, #fff 55%);
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius);
  padding: 0.65rem 0.75rem 0.5rem;
}

.os-pro .os-payoff-insights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.65rem 0 0.35rem;
}

.os-pro .os-payoff-insight {
  background: var(--os-soft);
  border: 1px solid var(--os-border);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  min-width: 0;
}

.os-pro .os-payoff-insight span {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--os-muted);
}

.os-pro .os-payoff-insight strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--os-ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.os-pro .os-payoff-insight strong.is-up { color: var(--os-up); }
.os-pro .os-payoff-insight strong.is-down { color: var(--os-down); }

.os-pro .main_logic,
.os-pro .os-pos-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem !important;
  padding: 0.65rem 0.25rem !important;
  border-bottom: 1px solid var(--os-border) !important;
  align-items: center !important;
  justify-content: stretch !important;
}

.os-pro .os-leg-card {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.5rem;
  row-gap: 0.12rem;
  align-items: center;
  min-width: 0;
  flex: unset;
  position: relative;
}

.os-pro .os-leg-card > .bg_indicator_buy,
.os-pro .os-leg-card > .bg_indicator_sell {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: center;
}

.os-pro .os-leg-card > .main_lot_size_option_simulator {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
}

.os-pro .os-leg-main {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
  grid-column: 3;
  grid-row: 1;
}

.os-pro .os-leg-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--os-ink);
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.os-pro .os-leg-meta {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--os-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.os-pro .os-leg-premium {
  grid-column: 3;
  grid-row: 2;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--os-ink);
  font-variant-numeric: tabular-nums;
  margin-left: 0;
  white-space: nowrap;
}

.os-pro .os-leg-type {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.os-pro .os-leg-type-ce {
  background: #ECFDF5;
  color: #047857;
}

.os-pro .os-leg-type-pe {
  background: #FEF2F2;
  color: #B91C1C;
}

.os-pro .action_option_strategy {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
  padding-left: 0.25rem;
}

.os-pro .action_option_strategy i {
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--os-muted);
  line-height: 1;
}

.os-pro .action_option_strategy i:hover {
  color: var(--os-brand);
}

.os-pro .action_option_strategy .green-option-indicator {
  color: var(--os-up) !important;
  font-size: 0.7rem;
}

.os-pro #chartdiv,
.os-pro .os-payoff-wrap {
  height: 320px !important;
  max-height: 320px !important;
  min-height: 280px !important;
}

.os-pro canvas#osPayoffChart {
  width: 100% !important;
  height: 100% !important;
}

.os-pro .main_total_greeks_p_l p,
.os-pro .left_main_all_greeks p,
.os-pro .right_p_l p {
  background: var(--os-soft) !important;
  border: 1px solid var(--os-border);
  border-radius: 8px;
  font-size: 0.72rem !important;
  font-weight: 600;
  color: var(--os-ink) !important;
  padding: 0.3rem 0.55rem !important;
}

.os-pro .table {
  font-size: 0.78rem;
}

.os-pro .table thead td,
.os-pro .table thead th {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--os-muted);
  border-color: var(--os-border);
}

.os-pro .table tbody td {
  font-weight: 600;
  color: var(--os-ink);
  border-color: var(--os-border);
  vertical-align: middle;
}

/* Option chain stays full-width, scrolls internally instead of expanding the page */
.os-pro .os-chain-shell,
.os-pro .option_chain_optimiser,
.os-pro .option_chain_table_main,
.os-pro .main_option_chain_table,
.os-pro .table-responsive {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto;
}

.os-pro .os-chain-shell {
  min-height: 360px;
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius-lg);
  background: #fff;
  box-shadow: var(--os-shadow);
  padding: 0.35rem;
  margin-bottom: 1rem;
}

.os-pro .os-chain-shell .nifty-table {
  width: 100%;
  min-width: 1080px;
  margin-bottom: 0;
  table-layout: auto;
}

.os-pro .All_strategy_builder.os-strategy-catalog {
  display: block !important;
  width: 100%;
}

.os-pro .main_top_strategy_optimizer {
  margin-top: 0 !important;
  width: 100%;
}

.os-pro .os-analysis-shell #myTable {
  min-height: 140px;
}

.os-pro .os-analysis-shell .left_inner_data_edit_del + * ,
.os-pro .os-analysis-shell #myTable:empty::after {
  content: none;
}

.os-pro .os-payoff-wrap::before {
  content: none;
}

.os-pro .os-loading,
.os-pro .os-empty {
  text-align: center;
  padding: 1.25rem 1rem;
  color: var(--os-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.os-pro .os-loading {
  color: var(--os-brand);
}

.os-pro .All_strategy_builder > h6 {
  display: none;
}

.os-pro .textOnInput label:after {
  display: none !important;
}

.os-pro .textOnInput {
  width: auto !important;
}

@media (max-width: 992px) {
  .os-pro .os-controls {
    grid-template-columns: 1fr;
  }

  .os-pro .os-scrubber-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .os-pro .left_option_simulator_btn,
  .os-pro .right_option_simulator_btn {
    justify-content: center;
  }

  #osAnalysisShell .os-workspace-grid {
    grid-template-columns: 1fr !important;
    min-height: 0;
  }

  #osAnalysisShell .os-workspace-positions,
  #osAnalysisShell .os-workspace-chart {
    grid-column: 1 !important;
  }

  .os-pro .left_main_strategy,
  .os-pro .right_table_greeks {
    min-height: 0;
  }

  .os-pro .os-payoff-insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .os-pro {
    padding: 0 1rem 1.5rem;
  }

  .os-pro .os-hero h1 {
    font-size: 1.2rem;
  }

  .os-pro #chartdiv,
  .os-pro .os-payoff-wrap {
    height: 300px;
    min-height: 300px;
  }

  .os-pro .os-play-hint {
    display: none;
  }
}
