/* SmartSuite ROI Calculator styles.
   Ported from the standalone calculator (smart.cadienttalent.com) and
   rebranded to Cadient orange (#fe4a23). All rules are scoped under
   #roi-app so they cannot affect the shared site header/footer. */
#roi-app * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#roi-app {
  font-family: inherit;
  background: #fafafa;
  min-height: 100vh;
  color: #2c2c2c;
}

/* Header with Cadient branding */
#roi-app .top-header {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#roi-app .header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#roi-app .logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

#roi-app .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fe4a23;
  letter-spacing: -0.5px;
}

#roi-app .tagline {
  color: #777777;
  font-size: 0.95rem;
}

#roi-app .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px;
}

#roi-app .page-title {
  margin-bottom: 24px;
  text-align: center;
  color: #2c2c2c;
}

#roi-app .page-title h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #141414;
}

#roi-app .page-title p {
  color: #141414;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 780px;
  margin: 0 auto;
}

/* Sliders Section at Top */
#roi-app .sliders-section {
  background: white;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

#roi-app .sliders-section h2 {
  color: #2c2c2c;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

#roi-app .sliders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

#roi-app .main-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 25px;
  margin-top: 0;
}

/* Configuration Panel Styling */
#roi-app .config-panel {
  background: white;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  max-height: 85vh;
  overflow-y: auto;
}

#roi-app .config-panel h2 {
  color: #2c2c2c;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

#roi-app .section-divider {
  height: 1px;
  background: #ececec;
  margin: 25px 0;
}

#roi-app .input-group {
  margin-bottom: 22px;
}

#roi-app .input-group label {
  display: block;
  margin-bottom: 8px;
  color: #555555;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Custom Range Slider Styling */
#roi-app .input-group input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #e0e0e0;
  outline: none;
  margin-bottom: 8px;
}

#roi-app .input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fe4a23;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(254, 74, 35, 0.3);
}

#roi-app .input-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fe4a23;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(254, 74, 35, 0.3);
}

#roi-app .input-group input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 8px rgba(254, 74, 35, 0.5);
}

#roi-app .input-group input[type="range"]::-moz-range-thumb:hover {
  box-shadow: 0 2px 8px rgba(254, 74, 35, 0.5);
}

#roi-app .input-group .value-display {
  text-align: right;
  color: #fe4a23;
  font-weight: 600;
  font-size: 1.05rem;
}

/* SmartSuite Tool Toggles */
#roi-app .tool-toggle {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

#roi-app .tool-toggle:hover {
  border-color: #e0e0e0;
  box-shadow: 0 3px 8px rgba(254, 74, 35, 0.08);
}

#roi-app .tool-toggle.active {
  background: linear-gradient(135deg, #fff7f5 0%, #fff1ee 100%);
  border-color: #fe4a23;
}

#roi-app .tool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#roi-app .tool-name {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 0.95rem;
}

#roi-app .tool-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #fe4a23;
  color: white;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
  text-transform: uppercase;
}

#roi-app .toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

#roi-app .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#roi-app .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d0d0d0;
  transition: .3s;
  border-radius: 24px;
}

#roi-app .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

#roi-app input:checked+.slider {
  background-color: #fe4a23;
}

#roi-app input:checked+.slider:before {
  transform: translateX(24px);
}

#roi-app .tool-description {
  font-size: 0.85rem;
  color: #777777;
  line-height: 1.5;
}

/* Dashboard Area */
#roi-app .dashboard-area {
  display: grid;
  gap: 25px;
}

/* Key Metrics Cards */
#roi-app .metric-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

#roi-app .metric-card {
  background: white;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

#roi-app .metric-card:hover {
  box-shadow: 0 6px 20px rgba(254, 74, 35, 0.1);
  transform: translateY(-2px);
}

#roi-app .metric-card.primary {
  background: linear-gradient(135deg, #fe4a23 0%, #ff6f52 100%);
  color: white;
  border: none;
}

#roi-app .metric-card.primary .metric-label {
  color: rgba(255, 255, 255, 0.9);
}

#roi-app .metric-card.primary .metric-change {
  color: rgba(255, 255, 255, 0.85);
}

#roi-app .metric-card.primary .metric-value {
  color: white;
}

#roi-app .metric-icon {
  width: 40px;
  height: 40px;
  background: #fff7f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

#roi-app .metric-card.primary .metric-icon {
  background: rgba(255, 255, 255, 0.2);
}

#roi-app .metric-label {
  color: #777777;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#roi-app .metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 4px;
}

#roi-app .metric-change {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 500;
}

/* Charts and Analysis */
#roi-app .chart-container {
  background: white;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#roi-app .chart-container h3 {
  color: #2c2c2c;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

#roi-app .savings-breakdown {
  display: grid;
  gap: 12px;
}

#roi-app .savings-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  padding: 14px;
  background: #fafafa;
  border-radius: 8px;
  transition: all 0.2s ease;
}

#roi-app .savings-item:hover {
  background: #f5f5f5;
}

#roi-app .savings-item.inactive {
  opacity: 0.4;
  pointer-events: none;
}

#roi-app .savings-item-name {
  font-weight: 500;
  color: #555555;
  font-size: 0.9rem;
}

#roi-app .savings-bar-container {
  margin: 0 20px;
  background: #ececec;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
}

#roi-app .savings-bar {
  height: 100%;
  background: linear-gradient(90deg, #fe4a23, #ff6f52);
  transition: width 0.5s ease;
  border-radius: 6px;
}

#roi-app .savings-value {
  font-weight: 600;
  color: #2c2c2c;
  min-width: 100px;
  text-align: right;
}

/* ROI Section */
#roi-app .roi-section {
  background: white;
  border: 2px solid #fe4a23;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#roi-app .roi-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fe4a23, #ff6f52);
}

#roi-app .roi-title {
  color: #555555;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

#roi-app .roi-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fe4a23;
  margin: 15px 0;
}

#roi-app .roi-subtitle {
  color: #777777;
  font-size: 1rem;
}

/* Comparison Grid */
#roi-app .comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

#roi-app .comparison-item {
  text-align: center;
  padding: 15px;
  background: #fafafa;
  border-radius: 8px;
}

#roi-app .comparison-label {
  font-size: 0.85rem;
  color: #777777;
  margin-bottom: 5px;
}

#roi-app .comparison-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2c;
}

/* ── Select Your Industry (top section) ──────────────────────────────── */
#roi-app .industry-section {
  background: #f4f4f4;
  border-radius: 28px;
  padding: 44px 48px;
  margin: 36px 0;
  text-align: center;
}

#roi-app .industry-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #141414;
  margin-bottom: 12px;
}

#roi-app .industry-subtitle {
  color: #757575;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 720px;
  margin: 0 auto 24px;
}

#roi-app .industry-section .industry-select {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

/* ── Results panel (right column) ────────────────────────────────────── */
#roi-app .results-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Dark headline savings card with four metrics + vertical dividers */
#roi-app .savings-card {
  background: #141414;
  border-radius: 24px;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
}

#roi-app .savings-metric {
  text-align: center;
  padding: 0 10px;
}

#roi-app .savings-label {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
  line-height: 1.3;
}

#roi-app .savings-value-big {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

#roi-app .savings-value-big.orange { color: #fe4a23; }
#roi-app .savings-value-big.white  { color: #ffffff; }

#roi-app .savings-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

#roi-app .savings-divider {
  width: 1px;
  height: 70px;
  background: #4a4a4a;
  justify-self: center;
}

/* "Hours Saved Monthly" summary card */
#roi-app .hours-card {
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
}

#roi-app .hours-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
}

#roi-app .hours-value {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fe4a23;
  line-height: 1;
  margin-bottom: 6px;
}

#roi-app .hours-subtitle {
  color: #777777;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

#roi-app .hours-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#roi-app .hours-detail {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

#roi-app .hours-detail-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c2c2c;
}

#roi-app .hours-detail-label {
  font-size: 0.82rem;
  color: #777777;
  margin-top: 4px;
}

/* ── Breakdown sections (full width, below the grid) ─────────────────── */
#roi-app .breakdown-sections {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}

#roi-app .roi-disclaimer {
  font-size: 0.8rem;
  color: #999999;
  line-height: 1.5;
  margin-top: 18px;
}

/* Smart Badge */
#roi-app .smart-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #fff7f5;
  border: 1px solid #fe4a23;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #fe4a23;
  font-weight: 600;
}

/* Change Benchmarks Link */
#roi-app .change-benchmarks-link {
  background: none;
  border: none;
  color: #fe4a23;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 8px;
  display: inline-block;
}

#roi-app .change-benchmarks-link:hover {
  color: #d93d1a;
  text-decoration: underline;
}

/* ── Choose Your SmartSuite — pre-configured bundles ─────────────────────
   Mirrors the live calculator: three goal-based bundle cards, each with a
   distinct accent (Recruit=emerald, Hire=violet, Retain=amber). Selecting a
   card sets the active tool set and is highlighted with the Cadient-orange
   ring so the choice is obvious regardless of each card's accent. */
#roi-app .bundles-section {
  background: white;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

#roi-app .bundles-head { margin-bottom: 24px; }

#roi-app .bundles-head h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  text-align: center;
}

#roi-app .bundles-head p {
  color: #777777;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

#roi-app .bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#roi-app .bundle-card {
  --accent: #fe4a23;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

#roi-app .bundle-card.recruit { --accent: #065f46; }
#roi-app .bundle-card.hire    { --accent: #5b21b6; }
#roi-app .bundle-card.retain  { --accent: #92400e; }

#roi-app .bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

#roi-app .bundle-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(254, 74, 35, 0.35);
}

#roi-app .bundle-card.selected {
  background: #fffaf8;
  box-shadow: 0 0 0 2px #fe4a23, 0 10px 28px rgba(254, 74, 35, 0.18);
}

#roi-app .bundle-card.selected::after {
  content: "\2713  Selected";
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fe4a23;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
}

#roi-app .bundle-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#roi-app .bundle-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  flex: 0 0 auto;
}

#roi-app .bundle-ico svg { width: 20px; height: 20px; }

#roi-app .bundle-top h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

#roi-app .bundle-tagline {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

#roi-app .bundle-subhead {
  color: #2c2c2c;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

#roi-app .bundle-desc {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

#roi-app .bundle-tools-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a93a3;
  margin-bottom: 10px;
}

#roi-app .bundle-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

#roi-app .bundle-tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: #fff7f5;
  border: 1px solid #ffd9cf;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fe4a23;
}

#roi-app .bundle-tool svg { width: 13px; height: 13px; flex: 0 0 auto; }

#roi-app .bundle-benefits {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

#roi-app .bundle-benefits li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 7px;
}

#roi-app .bundle-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

#roi-app .bundle-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

#roi-app .bundle-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

#roi-app .bundle-persona {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 3px;
}

#roi-app .bundle-count {
  font-size: 0.78rem;
  color: #888888;
  font-weight: 500;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 1024px) {
  #roi-app .main-grid {
    grid-template-columns: 1fr;
  }

  #roi-app .config-panel {
    max-height: none;
  }

  #roi-app .sliders-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  #roi-app .bundle-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #roi-app .metric-cards {
    grid-template-columns: 1fr;
  }

  #roi-app .comparison-grid {
    grid-template-columns: 1fr;
  }

  #roi-app .sliders-grid {
    grid-template-columns: 1fr;
  }

  #roi-app .savings-card {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
  }

  #roi-app .savings-divider {
    display: none;
  }

  #roi-app .bundle-card {
    padding: 20px;
  }

  #roi-app .bundles-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  #roi-app .bundle-tools { gap: 6px; }
}

/* Contact Modal Styles */
#roi-app .contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

#roi-app .contact-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 80vh;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#roi-app .contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

#roi-app .contact-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

#roi-app .contact-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  #roi-app .contact-modal-overlay {
    padding: 1rem;
  }

  #roi-app .contact-modal-content {
    width: 95%;
    height: 85vh;
  }
}

/* ── Professional SVG iconography (replaces emoji) ─────────────────────
   Section headers get a small tinted icon chip (cohesive with metric
   cards); metric cards and per-tool breakdown rows use stroke SVGs that
   inherit color via currentColor. */
#roi-app .sec-chip {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #fff7f5;
  color: #fe4a23;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

#roi-app .sec-chip .sec-ico {
  width: 18px;
  height: 18px;
}

#roi-app .chart-container h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

#roi-app .sliders-section h2,
#roi-app .config-panel h2 {
  gap: 10px;
}

#roi-app .metric-icon {
  color: #fe4a23;
}

#roi-app .metric-icon svg {
  width: 22px;
  height: 22px;
}

#roi-app .metric-card.primary .metric-icon {
  color: #ffffff;
}

#roi-app .savings-item-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#roi-app .savings-item-name .tool-ico {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #fe4a23;
}

#roi-app .savings-item.inactive .savings-item-name .tool-ico {
  color: #9aa3b2;
}