.status-indicator {
    position: relative;
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    margin: 10px 0;
    height: 30px;
    border-radius: 5px;
}

.status-bar {
    background-color: #4CAF50;
    height: 100%;
    width: 0%;
    transition: width 0.5s;
    position: relative;
}

.status-bar span {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    line-height: 30px; /* Match this to the height of .status-bar */
}


.steps {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between steps */
}

.step {
	width: 50%;
    padding: 5px;
    border: 1px solid #ccc;
    margin: 5px;
	border-radius: 6px;
	border: 2px solid #4CAF50;
    background-color: #f3f3f3;
}

.step.completed {
    background-color: #4CAF50;
    color: white;
}

.message {
    margin-bottom: 15px;
    font-size: 1em;
    color: red;
    text-align: center;
}

/* ✅ Large Desktops (min-width: 1920px) */
@media (min-width: 1920px) {
    .status-bar span {
      font-size: 20px;
    }
  
    .step {
      font-size: 20px;
      padding: 8px;
      width: 60%;
    }
  
    .message {
      font-size: 20px;
    }
  }

/* ✅ Standard Laptops (max-width: 1280px) */
@media (max-width: 1280px) {
    .status-bar span {
      font-size: 16px;
    }
  
    .step {
      font-size: 16px;
      padding: 6px;
      width: 60%;
    }
  
    .message {
      font-size: 16px;
    }
  }


/* ✅ Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .status-bar span {
      font-size: 15px;
    }
  
    .step {
      font-size: 15px;
      padding: 5px;
      width: 80%; /* stack steps on smaller screens */
    }
  
    .message {
      font-size: 15px;
    }
  
    .steps {
      flex-direction: column;
      gap: 8px;
    }
  }