body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header h1 {
    font-size: 24px;
    font-weight: bold;
}

.content {
    flex: 1;
}


/* Default to paused */
#moving-bar {
    animation-play-state: paused;
    max-width: 100%; 
    overflow: hidden; 
    transition: width 0.3s ease-in-out; 
}
  
@keyframes moveBar {
    0% { left: 0; }
    50% { left: calc(100% - 50px); }
    100% { left: 0; }
}

/* @media (max-width: 768px) {
    #moving-bar, #connection-line {
        display: none;
    }
} */

@media (max-width: 486px) {
    #moving-bar, #connection-line {
        display: none;
    }
}

.chart-container canvas {
    max-width: 100%; 
    height: 100%;
}

.row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    align-items: center;
}

.chart-container {
    max-width: 75%;
    width: 100%;
    height: 120px;
    position: relative;
}

.result-label {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

#results {
    display: block;
    margin: 20px auto;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 600px;
    text-align: left;
}
#results p {
    margin: 10px 0;
    font-size: 16px;
}

/* .container {
    max-width: 90%;
    margin: auto;
    margin-top: 30px;
} */

.container2 {
    max-width: 85%;
    margin: auto;
    margin-top: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.fa-regular {
    font-size: 1.5rem;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease-out;
    padding: 20px;
    border-left: 4px solid;
}


.card-content {
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-container {
    padding: 12px;
    border-radius: 10px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.card-value {
    display: flex;
    align-items: baseline;
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.value {
    font-size: 28px;
    font-weight: bold;
}

.unit {
    margin-left: 5px;
    font-size: 16px;
    color: gray;
}

.progress-bar {
    margin-top: 10px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
}

/* Colors */
.border-blue { border-color: #3b82f6; }
.border-green { border-color: #10b981; }
.border-purple { border-color: #8b5cf6; }
.border-amber { border-color: #f59e0b; }

.bg-blue { background-color: #dbeafe; }
.bg-green { background-color: #d1fae5; }
.bg-purple { background-color: #ede9fe; }
.bg-amber { background-color: #fef3c7; }

.svg.blue { color: #3b82f6; }
.svg.green { color: #10b981; }
.svg.purple { color: #8b5cf6; }
.svg.amber { color: #f59e0b; }

.progress-fill.blue { background-color: #3b82f6; }
.progress-fill.green { background-color: #10b981; }
.progress-fill.purple { background-color: #8b5cf6; }
.progress-fill.amber { background-color: #f59e0b; }

/* Animation for showing cards */
#grid-results .card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-out;
}


.transition-all {
    transition: all 0.5s ease-out;
}


/* General styling for the button container */
#start-test-container {
    margin-top: 50px; /* Default margin for desktop */
    height: auto;
}


.button-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
}

/* START TEST BUTTON  */
.btn-start {
    background-color: #003065; /* Dark Blue */
    color: white;
    font-size: 2rem;
    font-weight: bold;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    animation: float 2s infinite ease-in-out;
}


.btn-start:hover {
    background-color: green;
    border: 4px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Ripple Effect (ONLY FOR START TEST) */
.ripple-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(30, 58, 136, 0.2);
    z-index: 1;
    animation: ripple 1.5s infinite ease-out;
}


/* Download Button */
.btn-download {
    background: transparent;
    color: #2689f3;
    font-size: 1.5rem;
    font-weight: bold;
    height: 70px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: not-allowed;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 65px;
}

.finished-display {
    margin-top: 12px;
    padding: 10px 14px;
    /* background-color: #cdcdcd45; */
    background-color: #cdcdcd33;
    border: .5px solid #cbcbcb;
    border-radius: 8px;
    font-size: 15px;
    color: #334155;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
    margin-bottom: .5rem;
  }
  

.border-gray { border-color: #6b7280; }
.bg-gray     { background-color: #e5e7eb; }


.btn-download i {
    font-size: 1.5rem;
}

/* Upload Button */
.btn-upload {
    background: transparent;
    color: #42b35c;
    font-size: 1.5rem;
    font-weight: bold;
    height: 70px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: not-allowed;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 65px;
}


.btn-upload i {
    font-size: 1.5rem;
}


/* Define keyframes for the fade-in and scale animation */
@keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.7);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  

/* Running Test Again */
.btn-again {
    background-color: #003065;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 250px;
    height: 70px;
    border-radius: 10px; 
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer; 
    animation: fadeInScale 1s ease-out forwards; /* Add pulse animation */
    display: flex !important; /* Override previous display */
    flex-direction: row !important; /* Ensure row alignment */
    align-items: center;
    justify-content: center;
    /* margin-top: 75px; */
    margin-top: 155px;
    gap: 8px; 
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out; /* Smooth transitions */
}


.btn-again i {
    font-size: 1.5rem;
}

.btn-again:hover {
    background-color: rgb(4, 141, 4); 
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Define keyframes for the fade-in and scale animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.d-none {
    display: none;
  }

/* Floating Animation for Start Test */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}


/* Ripple animation */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


@media (max-width: 768px) {
    #start-test-container {
        height: auto;
        margin-top: 0;
        margin-bottom: 0;
        padding: 10px 0;
    }
}


@media (max-width: 576px) {
    .page-header.page-header--image-overlapping {
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
    }

    .btn-primary {
        margin-top: 10px;
        margin-bottom: 10px; 
    }
}

@media (max-width: 768px) {
    .global-header__site-search-wrapper {
        display: none !important;
    }
}


/* Remove any extra space or alignment issues on the wrapper */
.page-header__image-wrapper {
    margin: 0;
    padding: 0;
    width: 100%; 
    height: auto;
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
}

/* Debugging helper - Add borders to visualize alignment */
.page-header__image, 
.page-header__image-wrapper {
    border: 1px solid red; 
}

.my-4-custom {
    margin-top: 0;
    margin-bottom: 1.5rem !important;
  }
  .col-md-4, .col-6 {
      padding: 5px;
  }
  .box {
      padding: 10px;
      background-color: transparent;
      margin: 4px;
      text-align: center;
      border: 1px solid lightgray;
      border-radius: 10px;
      box-sizing: border-box;
      flex: 1 1 calc(10% - 20px);
  }

.page-header.hero {
    position: relative;
    /* background: linear-gradient(135deg, #003065 0%, #0057A5 100%); */
    background: linear-gradient(172deg, #002e58 46.22%, #f3b75c);
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  }
  
  .page-header.hero .hero__overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
  }
  
  .hero__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
  }
  

  
.spinner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(243, 244, 246, .45);
    z-index: 1000; 
  }
  .spinner {
    height: 70px;
    width: 70px;
    color: #002e58;
  }
  
.iframe-overlay {
    position: absolute;
    width: 100%;
    height: 97%;
    top: 0; 
    left: 0;
    background-color: #002e58;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    flex-direction: column;
    padding-right: 10rem;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  } 
  
.iframe-container {
    position: relative;
    /* min-height: 600px;   
    height: auto;        
    overflow: visible;   */
}

/* @media (min-width: 769px) {
    .iframe-container {
      min-height: 600px;
    }
} */
 

@media (max-width: 768px) {
  .iframe-overlay {
      font-size: 1.2rem;
      padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .iframe-overlay {
      font-size: 1rem; 
      padding-right: 1rem;
  }
}

@media (max-width: 768px) {
    .grid-container {
        gap: 15px;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .card {
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .title {
        font-size: 16px;
    }

    .value {
        font-size: 24px;
    }

    .unit {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .btn-download, .btn-upload, .btn-again{
        width: 180px;
        height: 50px;
        font-size: 1.1rem;
        /* margin: 20px auto; */
    }
}


@media (max-width: 768px) {
    .chart-container {
        max-width: 100%;
        height: 120px;
    }
}

/* @media (max-width: 768px) {
    .iframe-container {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .iframe-container {
        height: 300px;
    }
} */

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    header h1 {
        font-size: 20px;
    }

    #results p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .spinner {
        height: 50px;
        width: 50px;
    }

    .iframe-overlay {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .spinner {
        height: 40px;
        width: 40px;
    }

    .iframe-overlay {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .fa-regular {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ripple-effect {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .btn-start {
        border-radius: 50%;
        width: 180px;
        height: 180px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .btn-download, .btn-upload, .btn-again  {
        margin-top: 120px;
    }
}

.content.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    min-height: 600px; 
    position: relative;
}

@media (max-width: 768px) {
    .content.container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 12px;
        min-height: 400px; 
    }
}

@media (max-width: 768px) {
    #server-location-text {
        max-width: 130px;
        word-wrap: break-word;
        word-break: break-word;
        margin-left: 0px !important;
    }
}

.paired-stepper {
  display:flex; align-items:center; gap:10px; margin:12px 0 16px; color: white;
  margin-left: 25px; margin-right: 25px;
}
.paired-stepper .step {display:flex; align-items:center; gap:8px; font-size: 20px; font-weight:700; opacity:.45; transition:.2s}
.paired-stepper .step.is-active {opacity:1}
.paired-stepper .step.is-done {opacity:.9}
.paired-stepper .step span {
  display:inline-grid; place-items:center; width:25px; height:25px; border-radius:999px;
  border:1px solid #cfd8e3; font-size:16px;
}
.paired-stepper .rail {flex:1; height:2px; background:linear-gradient(90deg,#e5e7eb,#cfd8e3)}

#paired-stage {position:relative; min-height:300px}
.stage-card {
  position:relative;
  transition:opacity .35s ease, transform .35s ease;
  opacity:0; transform:translateY(8px); display:none;
}
.stage-card.is-visible {opacity:1; transform:translateY(0); display:block}

@media (min-width: 1024px) {
  /* make results area adapt side-by-side automatically if you want */
  .comparison-grid {display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
}

.comparison-card {
  border:1px solid #e5e7eb; border-radius:14px; padding:14px; background:#fff;
  box-shadow:0 1px 12px rgba(0,0,0,.04);
}
.badge {font-size:12px; padding:2px 8px; border-radius:999px; border:1px solid #e5e7eb}
.badge.win {border-color:#22c55e}
.delta {font-size:12px; opacity:.8}

.test-card {
  width: min(960px, 95vw); 
  aspect-ratio: 16 / 11;      /* keep wide video-like aspect */
  margin: 20px auto;         /* center horizontally */
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-card iframe,
.test-card canvas,
.test-card > div {
  width: 100%;
  height: 100%;
  border: 0;
}

/* MSAK specific: ensure its charts/results stretch full size */
#msak-card {
  flex-direction: column;
  padding: 20px;
}


/* Subtle left nudge of the test card when compare is visible */
#paired-stage.show-compare .stage-card.is-visible{
  transform: translateX(-6px);
}

/* Make the comparison content look cardy and keep it in view */
.compare-panel .comparison-inner{
  background:#0e2d4a;            /* tweak to your theme */
  color:#fff;
  border-radius:14px;
  padding:14px 16px;
  box-shadow:0 8px 30px rgba(0,0,0,.25);
}
@media (min-width: 1100px){
  .compare-panel .comparison-inner{top:12px; }
}

/* Your existing pieces */
.comparison-grid{ display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width: 600px){ .comparison-grid{ grid-template-columns:1fr; } }
.comparison-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px; padding:12px; background:rgba(255,255,255,.06);
}
.badge{ font-size:12px; padding:2px 8px;}
.badge.win{ border-color:#22c55e; }

.comparison-card {
  background: linear-gradient(145deg, #0050a3, #f3f4f6);
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.compare-panel .comparison-inner {
  background: rgba(14,45,74,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  margin-top: 20px;
}
.comparison-card strong { font-size: 15px; color: #cbd5e1; }
.comparison-card div[style*="font-size:20px"] { font-size: 24px !important; font-weight: 700; }
.comparison-card {
  opacity: 0;
  transform: translateY(8px);
}
.comparison-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all .4s ease-out;
}
.badge.win { background:#22c55e; color:#fff; }
.badge.loss { background:#ef4444; color:#fff; }

/* Stepper container */
#paired-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  position: relative;
  gap: 20px;
  overflow: hidden;
}

/* Step circles + labels */
#paired-stepper .step {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #94a3b8;
  position: relative;
  z-index: 1;
  gap: 8px;
  font-size: 15px;
  white-space: nowrap;
}
#paired-stepper .step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  transition: all .3s ease;
}

/* Active */
#paired-stepper .step.is-active { color: #1e293b; }
#paired-stepper .step.is-active span {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
  transform: scale(1.05);
}

/* Done */
#paired-stepper .step.is-done span {
  background: #10b981;
  color: #fff;
}
#paired-stepper .step.is-done::after {
  position: absolute;
  left: 4px; top: 1px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

/* Rail (progress line) */
#paired-stepper .rail {
  position: absolute;
  top: 50%;
  left: 48px;    /* just after first circle */
  right: 48px;   /* just before last circle */
  height: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  transform: translateY(-50%);
}
#stepper-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #22c55e);
  border-radius: 999px;
  transition: width .35s ease;
}

/* Responsive compact mode */
@media (max-width: 500px) {
  #paired-stepper { gap: 12px; padding: 8px 12px; }
  #paired-stepper .step { font-size: 0; } /* hide labels */
  #paired-stepper .step span { font-size: 13px; }
}

/* Keep rail clearly below labels and behind circles/text */
#paired-stepper .rail{
  position:absolute;
  height:8px;
  left:20px;                 /* a touch more breathing room from circle 1 */
  right:15px;                /* same near last circle */
  top: calc(60% + 14px);     /* move rail down so it never runs through labels */
  background:#e6eef7;
  border-radius:999px;
  transform: translateY(-50%);
  z-index: 0;                /* rail behind everything */
}
#stepper-fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg,#3b82f6,#22c55e);
  border-radius:999px;
  transition: width .35s ease;
}

/* Circles/labels stay above the rail */
#paired-stepper .step{ z-index:1; }

/* Make done/active labels readable (not faded) */
#paired-stepper .step.is-active{ color:#0f172a; }
#paired-stepper .step.is-done  { color:#0f172a; }

/* Optional: tiny “connector nubs” so the rail visually meets circles cleanly */
#paired-stepper .step span::after{
  content:"";
  position:absolute;
  top:50%;
  right:-10px;
  width:10px; height:4px;
  transform: translateY(-50%);
  background: transparent;   /* acts as spacer, keeps label clear of rail */
}

#paired-stepper .step.is-done span {
  background: #10b981; /* green circle */
  color: #fff;
}
#paired-stepper .step.is-done { 
  color:#0f172a; /* dark label */
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: start;
  margin-top: 20px;
  grid-template-columns: 1fr; /* stack on mobile */
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  min-width: 0; /* prevents overflow on small screens */
}

/* Remove the margin-right pushing your test off */
#paired-stage {
  margin-right: 0 !important;
}

/* Default layout: text + speedtest stacked/grid */
.hero-grid{
  display:grid; gap:24px; align-items:center;
  grid-template-columns: 1fr; /* stack on mobile */
  margin-top:16px;
}

.hero-left{ align-self:center; }
.hero-right{ min-width:0; }

/* Finished state: hide hero, show 2-column (speedtest + results) */
.hero-grid.finished{
  grid-template-columns: 1fr; /* fallback for mobile */
}
@media (min-width:1100px){
  .hero-grid.finished{
    grid-template-columns: 1fr minmax(360px,520px); /* test on left, results on right */
  }
}
.hero-grid.finished .hero-left{ display:none; }

/* Results panel styles */
.results-panel{
  opacity:0; transform:translateX(16px);
  transition: opacity .35s ease, transform .35s ease;
}
.hero-grid.finished .results-panel{
  opacity:1; transform:none;
}


.stage-card{ justify-self: start; }  /* anchor the card to the left of its column */

#paired-stage{
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  column-gap: 24px;          /* space between test (left) and results (right) */
  padding-left: 24px;        /* space to the left of the test card */
}

@media (min-width:1100px){
  .hero-grid{ grid-template-columns: minmax(340px,520px) 1fr; }
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr; /* stacked on mobile */
  gap: 24px;
}

@media (min-width: 1100px) {
  .hero-right {
    grid-template-columns: 1fr minmax(660px, 900px); /* test left, results right */
    align-items: stretch;
  }
}

.results-panel {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .35s ease, transform .35s ease;
}
.hero-grid.finished .results-panel {
  opacity: 1;
  transform: none;
}

#paired-stepper .step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;  /* light gray circle */
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #475569;
  transition: all .3s ease;
}

/* Active step (blue highlight, still empty circle) */
#paired-stepper .step.is-active span {
  background: #f50b0b6d;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
  transform: scale(1.05);
}

/* Done step shows a check mark */
#paired-stepper .step.is-done span {
  background: #10b981; /* green */
  color: #fff;
  font-size: 20px;
}
#paired-stepper .step.is-done span::before {
  content: "✓";
}

