.elementor-72580 .elementor-element.elementor-element-38c0c1f{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-aabe0be *//* ═══════════════════════════════════════════════════════════
   MultiTech Interactive Guide Skin — Scoped CSS
   Paste into: Elementor → Advanced → Custom CSS
                OR the page's HTML widget inside a <style> tag
                OR theme Customize → Additional CSS

   All rules are scoped under .mtdocs so they only affect the
   guide and won't bleed into the rest of the WordPress site.

   YOUR HTML MUST BE WRAPPED IN <div class="mtdocs"> ... </div>
═══════════════════════════════════════════════════════════ */

.mtdocs {
  --blue:          #0069C0;
  --blue-dark:     #004F91;
  --blue-light:    #E8F2FB;
  --accent:        #00A3E0;
  --success:       #00875A;
  --warning:       #FF8B00;
  --text:          #1A1A2E;
  --text-muted:    #5A6478;
  --border:        #D6E4F0;
  --bg:            #F4F8FC;
  --white:         #FFFFFF;
  --radius:        10px;
  --shadow:        0 2px 16px rgba(0, 105, 192, 0.08);
  --shadow-hover:  0 6px 28px rgba(0, 105, 192, 0.16);

  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.mtdocs *,
.mtdocs *::before,
.mtdocs *::after {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.mtdocs .dita-guide-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--accent) 100%);
  color: white;
  padding: 40px 24px 32px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.mtdocs .dita-guide-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.mtdocs .dita-guide-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.mtdocs .header-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mtdocs .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mtdocs .brand-logo {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-transform: uppercase;
}

.mtdocs .brand-dot {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtdocs .brand-dot::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
}

.mtdocs .dita-guide-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: white;
}

.mtdocs .header-sub {
  font-size: 14px;
  opacity: 0.75;
  font-weight: 300;
  font-family: 'DM Mono', 'Courier New', monospace;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   MODEL SELECTOR BAR (sticky)
═══════════════════════════════════════════════════════════ */
.mtdocs .model-bar {
  background: white;
  border-bottom: 2px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mtdocs .model-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.mtdocs .model-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-right: 16px;
  border-right: 1px solid var(--border);
  margin-right: 16px;
  white-space: nowrap;
}

.mtdocs .model-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 0;
}

.mtdocs .model-tab {
  padding: 7px 16px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.02em;
}

.mtdocs .model-tab:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.mtdocs .model-tab.active {
  background: var(--blue);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTAINER
═══════════════════════════════════════════════════════════ */
.mtdocs .dita-guide-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* ═══════════════════════════════════════════════════════════
   PROGRESS NAV
═══════════════════════════════════════════════════════════ */
.mtdocs .progress-nav {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.mtdocs .progress-nav::-webkit-scrollbar {
  display: none;
}

.mtdocs .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 70px;
  cursor: pointer;
  position: relative;
}

.mtdocs .progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
  transition: background 0.3s;
}

.mtdocs .progress-step.done:not(:last-child)::after {
  background: var(--success);
}

.mtdocs .step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
  flex-shrink: 0;
}

.mtdocs .progress-step.active .step-circle {
  background: var(--blue);
  color: white;
  box-shadow: 0 0 0 4px var(--blue-light);
}

.mtdocs .progress-step.done .step-circle {
  background: var(--success);
  color: white;
}

.mtdocs .step-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.mtdocs .progress-step.active .step-label {
  color: var(--blue);
  font-weight: 600;
}

.mtdocs .progress-step.done .step-label {
  color: var(--success);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.mtdocs .section {
  display: none;
  animation: mtdocs-fade-in 0.3s ease;
}

.mtdocs .section.active {
  display: block;
}

@keyframes mtdocs-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mtdocs .section-header {
  margin-bottom: 24px;
}

.mtdocs .section-tag {
  display: inline-block;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mtdocs .section-header h2,
.mtdocs .section-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}

.mtdocs .section-header p,
.mtdocs .section-header .shortdesc {
  color: var(--text-muted);
  margin: 8px 0 0 0;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════ */
.mtdocs .card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.mtdocs .card:hover {
  box-shadow: var(--shadow-hover);
}

.mtdocs .card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 14px 0;
  color: var(--blue-dark);
}

/* ═══════════════════════════════════════════════════════════
   PACKAGE CONTENTS TABLE
═══════════════════════════════════════════════════════════ */
.mtdocs .contents-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.mtdocs .contents-table th {
  background: var(--blue-dark);
  color: white;
  font-weight: 500;
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mtdocs .contents-table th:first-child { border-radius: 6px 0 0 0; }
.mtdocs .contents-table th:last-child  { border-radius: 0 6px 0 0; }

.mtdocs .contents-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.mtdocs .contents-table tr:last-child td { border-bottom: none; }
.mtdocs .contents-table tr:nth-child(even) td { background: var(--bg); }

.mtdocs .qty-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 20px;
  font-family: 'DM Mono', 'Courier New', monospace;
}

/* ═══════════════════════════════════════════════════════════
   LED INDICATOR TABLE
═══════════════════════════════════════════════════════════ */
.mtdocs .led-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.mtdocs .led-table th {
  background: var(--blue-dark);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.mtdocs .led-table th:first-child { border-radius: 6px 0 0 0; width: 140px; }
.mtdocs .led-table th:last-child  { border-radius: 0 6px 0 0; }

.mtdocs .led-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.mtdocs .led-table tr:last-child td { border-bottom: none; }
.mtdocs .led-table tr:nth-child(even) td { background: var(--bg); }

.mtdocs .label-badge {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 12px;
  font-weight: 500;
  background: var(--text);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.mtdocs .led-state {
  margin-bottom: 4px;
  font-size: 13px;
}

.mtdocs .led-state strong { color: var(--blue-dark); }

.mtdocs .led-note {
  font-size: 12px;
  color: var(--text-muted);
  background: #FFF8E1;
  border-left: 3px solid var(--warning);
  padding: 6px 10px;
  border-radius: 0 4px 4px 0;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   NUMBERED STEP ITEMS
═══════════════════════════════════════════════════════════ */
.mtdocs .step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.mtdocs .step-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.mtdocs .step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.mtdocs .step-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--text);
}

.mtdocs .step-content p,
.mtdocs .step-content li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mtdocs .step-content p { margin: 0; }

.mtdocs .step-content ul {
  padding-left: 18px;
  margin-top: 6px;
}

.mtdocs .step-content li { margin-bottom: 4px; }

/* ═══════════════════════════════════════════════════════════
   CALLOUTS
═══════════════════════════════════════════════════════════ */
.mtdocs .callout {
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0;
}

.mtdocs .callout-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.mtdocs .callout.info {
  background: var(--blue-light);
  border: 1px solid #B3D4EF;
  color: var(--blue-dark);
}

.mtdocs .callout.warning {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  color: #5D4037;
}

.mtdocs .callout.danger {
  background: #FFF3F3;
  border: 1px solid #FFCDD2;
  color: #B71C1C;
}

.mtdocs .callout strong {
  display: block;
  margin-bottom: 2px;
}

/* ═══════════════════════════════════════════════════════════
   MODEL-SPECIFIC CONTENT VISIBILITY
   Toggled by class on .mtdocs root:
     .mtdocs.model-leu2  → show .show-leu2, hide .show-l12g2
     .mtdocs.model-l12g2 → show .show-l12g2, hide .show-leu2
     .mtdocs.model-both  → show both
═══════════════════════════════════════════════════════════ */
.mtdocs .model-note { display: none; margin-top: 8px; }

.mtdocs.model-leu2  .model-note.show-leu2  { display: block; }
.mtdocs.model-leu2  .model-note.show-l12g2 { display: none;  }

.mtdocs.model-l12g2 .model-note.show-l12g2 { display: block; }
.mtdocs.model-l12g2 .model-note.show-leu2  { display: none;  }

.mtdocs.model-both .model-note.show-leu2,
.mtdocs.model-both .model-note.show-l12g2  { display: block; }

.mtdocs span.model-note { display: none; }
.mtdocs.model-leu2  span.model-note.show-leu2  { display: inline; }
.mtdocs.model-l12g2 span.model-note.show-l12g2 { display: inline; }
.mtdocs.model-both  span.model-note            { display: inline; }

/* ═══════════════════════════════════════════════════════════
   MODEL BADGES
═══════════════════════════════════════════════════════════ */
.mtdocs .model-badge {
  display: inline-block;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.mtdocs .badge-leu2  { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.mtdocs .badge-l12g2 { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }

/* ═══════════════════════════════════════════════════════════
   COLLAPSIBLE WIZARD STEPS
═══════════════════════════════════════════════════════════ */
.mtdocs .wizard-step {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  background: white;
}

.mtdocs .wizard-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}

.mtdocs .wizard-step-header:hover { background: var(--bg); }

.mtdocs .wizard-step-num {
  width: 26px;
  height: 26px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mtdocs .wizard-step-title {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  color: var(--text);
}

.mtdocs .wizard-chevron {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.mtdocs .wizard-step.open .wizard-chevron {
  transform: rotate(180deg);
}

.mtdocs .wizard-step-body {
  display: none;
  padding: 0 18px 18px 58px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.mtdocs .wizard-step.open .wizard-step-body {
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   NAV BUTTONS
═══════════════════════════════════════════════════════════ */
.mtdocs .nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.mtdocs .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  text-decoration: none;
}

.mtdocs .btn-primary {
  background: var(--blue);
  color: white;
}

.mtdocs .btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(0, 105, 192, 0.3);
}

.mtdocs .btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.mtdocs .btn-secondary:hover { background: var(--bg); }

.mtdocs .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════
   COMPLETION SCREEN
═══════════════════════════════════════════════════════════ */
.mtdocs .complete-card {
  text-align: center;
  padding: 48px 32px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mtdocs .complete-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.mtdocs .complete-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.mtdocs .complete-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 24px 0;
}

.mtdocs .resource-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.mtdocs .resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s;
}

.mtdocs .resource-link:hover {
  background: var(--blue);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   INLINE CODE
═══════════════════════════════════════════════════════════ */
.mtdocs code {
  font-family: 'DM Mono', 'Courier New', monospace;
  background: var(--blue-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .mtdocs .progress-step .step-label { font-size: 9px; }
  .mtdocs .step-circle { width: 26px; height: 26px; font-size: 11px; }
  .mtdocs .progress-step:not(:last-child)::after { top: 13px; }

  .mtdocs .dita-guide-header { padding: 28px 16px 24px; }
  .mtdocs .dita-guide-container { padding: 24px 16px 60px; }

  .mtdocs .nav-buttons { gap: 12px; }
  .mtdocs .btn { padding: 10px 16px; font-size: 13px; }

  .mtdocs .model-tabs { gap: 2px; }
  .mtdocs .model-tab { padding: 6px 10px; font-size: 11px; }

  .mtdocs .step-item { padding: 14px; gap: 12px; }
  .mtdocs .wizard-step-body { padding: 0 12px 14px 44px; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════════ */
@media print {
  .mtdocs .model-bar,
  .mtdocs .progress-nav,
  .mtdocs .nav-buttons,
  .mtdocs .model-tabs { display: none !important; }

  .mtdocs .section { display: block !important; }
  .mtdocs .model-note { display: block !important; }

  .mtdocs .card,
  .mtdocs .step-item,
  .mtdocs .wizard-step { box-shadow: none; break-inside: avoid; }

  .mtdocs .wizard-step-body { display: block !important; }

  .mtdocs .dita-guide-header {
    background: var(--blue-dark) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}/* End custom CSS */
/* Start custom CSS *//* ═══════════════════════════════════════════════════════════
   MultiTech DITA Quick Start — Page-Level Styling
   Paste into: Elementor → Page Settings → Advanced → Custom CSS

   ABOUT "body.elementor-page-72580":
     In Elementor's page-level Custom CSS, the word "body.elementor-page-72580"
     means "this page". So "body.elementor-page-72580 .ol.steps" means "every
     .ol.steps element on THIS page only" — it won't leak to
     other pages on the site.

   ADJUSTING:
     If a rule isn't taking effect, right-click → Inspect on the
     element and see what classes it actually has. Replace the
     body.elementor-page-72580 in this CSS with the real class name.
═══════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────
   DESIGN TOKENS (colors, spacing) — change these once and
   the whole guide updates.
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 {
  --mt-blue:        #0069C0;
  --mt-blue-dark:   #004F91;
  --mt-blue-light:  #E8F2FB;
  --mt-accent:      #00A3E0;
  --mt-warning:     #FF8B00;
  --mt-danger:      #B71C1C;
  --mt-text:        #1A1A2E;
  --mt-text-muted:  #5A6478;
  --mt-border:      #D6E4F0;
  --mt-bg:          #F4F8FC;
  --mt-radius:      10px;
  --mt-shadow:      0 2px 16px rgba(0,105,192,0.08);

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--mt-text);
  line-height: 1.65;
}

/* ───────────────────────────────────────────────────────────
   PAGE TITLE — the top h1
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 h1,
body.elementor-page-72580 .title.topictitle1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--mt-blue-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px 0;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--mt-blue);
}

/* Section headers */
body.elementor-page-72580 h2,
body.elementor-page-72580 .title.topictitle2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--mt-blue-dark);
  margin: 36px 0 14px 0;
  padding-left: 14px;
  border-left: 4px solid var(--mt-blue);
}

body.elementor-page-72580 h3,
body.elementor-page-72580 .title.topictitle3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--mt-text);
  margin: 24px 0 10px 0;
}

/* ───────────────────────────────────────────────────────────
   BODY TEXT
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 p {
  font-size: 16px;
  margin: 0 0 14px 0;
}

body.elementor-page-72580 .shortdesc {
  font-size: 17px;
  color: var(--mt-text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

/* ───────────────────────────────────────────────────────────
   STEPS (DITA <steps> and <step>) — numbered cards
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .ol.steps,
body.elementor-page-72580 ol.steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: mt-step;
}

body.elementor-page-72580 .ol.steps > li,
body.elementor-page-72580 ol.steps > li {
  counter-increment: mt-step;
  position: relative;
  padding: 18px 20px 18px 64px;
  margin-bottom: 14px;
  background: white;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow);
  list-style: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

body.elementor-page-72580 .mt-wizard-steps:nth-of-type(2) { display: none; }

body.elementor-page-72580 .entry-content ol li::marker,
body.elementor-page-72580 .entry-content ol > li::before {
  color: var(--mt-blue);
}

body.elementor-page-72580 .ol.steps > li:hover,
body.elementor-page-72580 ol.steps > li:hover {
  border-color: var(--mt-accent);
  box-shadow: 0 6px 28px rgba(0, 105, 192, 0.16);
}

body.elementor-page-72580 .ol.steps > li::before,
body.elementor-page-72580 ol.steps > li::before {
  content: counter(mt-step);
  position: absolute;
  left: 18px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: var(--mt-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

body.elementor-page-72580 .ph.cmd,
body.elementor-page-72580 .cmd {
  font-weight: 600;
  font-size: 15px;
  color: var(--mt-text);
  display: block;
  margin-bottom: 4px;
}

body.elementor-page-72580 .itemgroup.info {
  font-size: 14px;
  color: var(--mt-text-muted);
  margin-top: 6px;
}

/* ───────────────────────────────────────────────────────────
   NOTES, WARNINGS, CAUTIONS (DITA <note>)
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .note {
  border-radius: 8px;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 14.5px;
  border-left-width: 4px;
  border-left-style: solid;
  background: var(--mt-blue-light);
  border-left-color: var(--mt-blue);
  color: var(--mt-blue-dark);
}

body.elementor-page-72580 .note .note__title,
body.elementor-page-72580 .note__title {
  font-weight: 700;
  display: inline-block;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

/* Warning / Caution */
body.elementor-page-72580 .note_warning,
body.elementor-page-72580 .note_caution,
body.elementor-page-72580 .note.warning,
body.elementor-page-72580 .note.caution {
  background: #FFF8E1;
  border-left-color: var(--mt-warning);
  color: #5D4037;
}

/* Danger / Important */
body.elementor-page-72580 .note_danger,
body.elementor-page-72580 .note_important,
body.elementor-page-72580 .note.danger,
body.elementor-page-72580 .note.important {
  background: #FFF3F3;
  border-left-color: var(--mt-danger);
  color: var(--mt-danger);
}

/* ───────────────────────────────────────────────────────────
   TABLES (DITA <table> / <simpletable>)
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 table,
body.elementor-page-72580 .table,
body.elementor-page-72580 .simpletable {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--mt-shadow);
}

body.elementor-page-72580 table th,
body.elementor-page-72580 .table th,
body.elementor-page-72580 .sthead {
  background: var(--mt-blue-dark);
  color: white;
  font-weight: 500;
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.elementor-page-72580 table td,
body.elementor-page-72580 .table td,
body.elementor-page-72580 .stentry {
  padding: 10px 16px;
  border-bottom: 1px solid var(--mt-border);
  vertical-align: top;
}

body.elementor-page-72580 table tr:nth-child(even) td,
body.elementor-page-72580 .table tr:nth-child(even) td {
  background: var(--mt-bg);
}

body.elementor-page-72580 table tr:last-child td {
  border-bottom: none;
}

/* ───────────────────────────────────────────────────────────
   LISTS (regular bullet and numbered)
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 ul:not(.steps):not(.ol.steps) {
  margin: 12px 0;
  padding-left: 22px;
}

body.elementor-page-72580 ul:not(.steps):not(.ol.steps) li {
  margin-bottom: 6px;
  font-size: 15px;
}

body.elementor-page-72580 ol:not(.steps):not(.ol.steps) {
  margin: 12px 0;
  padding-left: 22px;
}

/* ───────────────────────────────────────────────────────────
   IMAGES
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .image,
body.elementor-page-72580 .topic img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 14px 0;
  display: block;
}

/* ───────────────────────────────────────────────────────────
   CODE / KEYWORDS / FILEPATHS
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .ph.uicontrol,
body.elementor-page-72580 .uicontrol,
body.elementor-page-72580 .ph.menucascade {
  font-weight: 600;
  color: var(--mt-blue-dark);
}

body.elementor-page-72580 .ph.codeph,
body.elementor-page-72580 .codeph,
body.elementor-page-72580 code {
  font-family: 'Courier New', monospace;
  background: var(--mt-blue-light);
  color: var(--mt-blue-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
}

body.elementor-page-72580 pre.codeblock,
body.elementor-page-72580 .pre.codeblock {
  background: #1A1A2E;
  color: #E8F2FB;
  padding: 14px 18px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  margin: 14px 0;
}

/* ───────────────────────────────────────────────────────────
   LINKS
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 a,
body.elementor-page-72580 .xref {
  color: var(--mt-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

body.elementor-page-72580 a:hover,
body.elementor-page-72580 .xref:hover {
  border-bottom-color: var(--mt-blue);
}

/* ───────────────────────────────────────────────────────────
   TOPIC CONTAINERS (DITA <topic>, <task>, <concept>, <reference>)
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .topic,
body.elementor-page-72580 .nested0,
body.elementor-page-72580 .nested1,
body.elementor-page-72580 article {
  background: transparent;
  padding: 0;
  margin-bottom: 10px;
}

/* Add a subtle separator between sibling topics */
body.elementor-page-72580 .nested0 + .nested0,
body.elementor-page-72580 article + article {
  margin-top: 10px;
  padding-top: 10px;
  
}

/* ───────────────────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  body.elementor-page-72580 .ol.steps > li,
  body.elementor-page-72580 ol.steps > li {
    padding: 14px 14px 14px 54px;
  }

  body.elementor-page-72580 .ol.steps > li::before,
  body.elementor-page-72580 ol.steps > li::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
    left: 14px;
    top: 14px;
  }

  body.elementor-page-72580 h2,
  body.elementor-page-72580 .title.topictitle2 {
    font-size: 20px;
  }
}
/* ───────────────────────────────────────────────────────────
   TABLE OF CONTENTS (top of page)
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .mt-toc {
  background: var(--mt-blue-light);
  border: 1px solid var(--mt-border);
  border-left: 4px solid var(--mt-blue);
  border-radius: var(--mt-radius);
  padding: 20px 24px;
  margin: 0 0 32px 0;
  box-shadow: var(--mt-shadow);
}

body.elementor-page-72580 .mt-toc-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mt-blue-dark);
  margin-bottom: 12px;
}

body.elementor-page-72580 .mt-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px 20px;
}

body.elementor-page-72580 .mt-toc-list li {
  margin: 0;
  padding: 0;
  font-size: 15px;
  position: relative;
  padding-left: 18px;
}

body.elementor-page-72580 .mt-toc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mt-blue);
  font-weight: 600;
}

body.elementor-page-72580 .mt-toc-list a {
  color: var(--mt-blue-dark);
  text-decoration: none;
  border-bottom: none !important;
  font-weight: 500;
  display: inline-block;
  padding: 2px 0;
  transition: color 0.15s;
}

body.elementor-page-72580 .mt-toc-list a:hover {
  color: var(--mt-blue);
  border-bottom: 1px solid var(--mt-blue) !important;
}

/* Scroll padding so anchored sections don't hide under the WP header */
body.elementor-page-72580 h1 {
  scroll-margin-top: 80px;
}
/* ───────────────────────────────────────────────────────────
   WIZARD STEP BAR (top of page)
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .mt-wizard-steps {
  display: flex;
  gap: 0;
  background: white;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 6px;
  margin: 0 0 28px 0;
  box-shadow: var(--mt-shadow);
  overflow-x: auto;
  scrollbar-width: none;
}

body.elementor-page-72580 .mt-wizard-steps::-webkit-scrollbar { display: none; }

body.elementor-page-72580 .mt-wizard-step {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  color: var(--mt-text-muted);
  white-space: nowrap;
  transition: all 0.15s;
  text-align: left;
}

body.elementor-page-72580 .mt-wizard-step:hover {
  background: var(--mt-blue-light);
  color: var(--mt-blue);
}

body.elementor-page-72580 .mt-wizard-step.active {
  background: var(--mt-blue);
  color: white;
}

body.elementor-page-72580 .mt-wizard-step.done {
  color: var(--mt-blue-dark);
}

body.elementor-page-72580 .mt-wizard-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mt-bg);
  color: var(--mt-text-muted);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--mt-border);
}

body.elementor-page-72580 .mt-wizard-step.active .mt-wizard-num {
  background: white;
  color: var(--mt-blue);
  border-color: white;
}

body.elementor-page-72580 .mt-wizard-step.done .mt-wizard-num {
  background: var(--mt-blue);
  color: white;
  border-color: var(--mt-blue);
}

body.elementor-page-72580 .mt-wizard-step.done .mt-wizard-num::after {
  content: '✓';
}

body.elementor-page-72580 .mt-wizard-step.done .mt-wizard-num {
  font-size: 0;
}

body.elementor-page-72580 .mt-wizard-step.done .mt-wizard-num::after {
  font-size: 14px;
}

body.elementor-page-72580 .mt-wizard-label {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ───────────────────────────────────────────────────────────
   STEP SECTIONS (show/hide)
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .mt-step {
  display: none;
  animation: mt-fade 0.25s ease;
}

body.elementor-page-72580 .mt-step.active {
  display: block;
}

@keyframes mt-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────────────────────────────────
   PREVIOUS / NEXT BUTTONS
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .mt-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--mt-border);
  gap: 12px;
}

body.elementor-page-72580 .mt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
}

body.elementor-page-72580 .mt-btn-primary {
  background: var(--mt-blue);
  color: white;
}

body.elementor-page-72580 .mt-btn-primary:hover {
  background: var(--mt-blue-dark);
  box-shadow: 0 4px 14px rgba(0, 105, 192, 0.3);
}

body.elementor-page-72580 .mt-btn-secondary {
  background: white;
  color: var(--mt-text);
  border: 1px solid var(--mt-border);
}

body.elementor-page-72580 .mt-btn-secondary:hover {
  background: var(--mt-bg);
}

/* Mobile: stack the step bar labels under the numbers */
@media (max-width: 700px) {
  body.elementor-page-72580 .mt-wizard-step {
    flex-direction: column;
    gap: 4px;
    padding: 10px 8px;
    font-size: 11px;
    text-align: center;
  }

  body.elementor-page-72580 .mt-wizard-label {
    font-size: 10px;
    line-height: 1.2;
  }
}

/* ───────────────────────────────────────────────────────────
   COLLAPSIBLE H2 PANELS
─────────────────────────────────────────────────────────── */
body.elementor-page-72580 .mt-collapse {
  border: 1px solid var(--mt-border);
  border-radius: 8px;
  margin: 12px 0;
  background: white;
  box-shadow: var(--mt-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

body.elementor-page-72580 .mt-collapse:hover {
  box-shadow: 0 6px 28px rgba(0, 105, 192, 0.16);
}

body.elementor-page-72580 .mt-collapse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s;
}

body.elementor-page-72580 .mt-collapse-header:hover {
  background: var(--mt-bg);
}

body.elementor-page-72580 .mt-collapse.open .mt-collapse-header {
  background: var(--mt-blue-light);
  border-bottom: 1px solid var(--mt-border);
}

body.elementor-page-72580 .mt-collapse-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--mt-blue-dark);
  flex: 1;
  border-left: none;
  padding-left: 0;
  margin: 0;
}

body.elementor-page-72580 .mt-collapse-chevron {
  font-size: 12px;
  color: var(--mt-blue);
  margin-left: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

body.elementor-page-72580 .mt-collapse.open .mt-collapse-chevron {
  transform: rotate(180deg);
}

body.elementor-page-72580 .mt-collapse-body {
  display: none;
  padding: 20px;
  animation: mt-collapse-fade 0.2s ease;
}

body.elementor-page-72580 .mt-collapse.open .mt-collapse-body {
  display: block;
}

@keyframes mt-collapse-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}/* End custom CSS */