body.modal-open {
  overflow: hidden;
}

.overlay-boxes {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  justify-content: center;
  align-items: center;
}
.overlay-boxes.show {
  display: flex !important;
}

.wizard-container {
  background: #fff;
  border-radius: 5px;
  width: 85vw;
  max-width: 1000px;
  height: 80vh;
  display: flex;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.wizard-nav {
  width: 30%;
  background: #f6f8fa;
  padding: 50px;
  border-right: 1px solid #ddd;
  border-radius: 5px;
}
.wizard-nav h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.wizard-nav ul {
  list-style: none;
  padding-left: 0;
}
.wizard-nav li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}
.wizard-nav li.active {
  font-weight: bold;
  color: #0071c5;
}

.wizard-body {
  width: 70%;
  padding: 40px;
}
.wizard-step {
  display: none;
}
.wizard-step.active {
  display: block;
}

.step-connect-box,
.step-connection-box,
.step-connecting-box,
.step-install-box,
.step-status-box,
.step-repair-box,
.step-error-box {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.connect-heading,
.connection-heading,
.connecting-heading,
.install-heading,
.status-heading,
.repair-heading,
.error-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.connect-text,
.connection-text,
.connecting-text,
.install-text,
.status-text,
.repair-text,
.error-text {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.wizard-img {
  width: 150px;
  margin: 5px 0;
}
.wizard-input {
  max-width: 500px;
  padding: 12px;
  font-size: 16px;
  display: block;
  width: 100%;
  border: none;
  border: 2px solid #ccc;
  border-radius: 5px;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.wizard-help-btn {
  background: transparent;
}
.wizard-next-btn,
.wizard-option-btn,
.btn-hp,
.btn-fix {
  background: #0071c5;
  border: none;
  color: #fff;
  padding: 10px 20px;
}
.wizard-next-btn:hover,
.wizard-option-btn:hover,
.btn-hp:hover,
.btn-fix:hover {
  background: #005b9a;
  color: #fff;
}

.wizard-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
}

.loading-box {
  text-align: center;
  margin: 30px 0;
}
.wizard-spinner {
  width: 3rem;
  height: 3rem;
  color: #0071c5;
}

.yellow {
  background: #ffa500 !important;
}
