/* QodMenu - Kayıt İlerleme Overlay Bileşeni */
.qm-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10990; /* toast 99999, bootstrap modal 1055; bunun üstünde olmalı */
}

.qm-loading-modal {
  width: min(560px, 92vw);
  background: #1f1f1f; /* koyu arka plan - kurumsal */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-radius: 0; /* köşeler kare olmalı */
  overflow: hidden;
}

.qm-loading-header {
  padding: 20px 24px 8px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.qm-loading-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.qm-loading-subtitle {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.qm-loading-steps {
  padding: 18px 16px 8px 16px;
}

.qm-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-left: 3px solid transparent;
}

.qm-step + .qm-step {
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.qm-step-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.qm-step-text {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

/* Durum renkleri - kurumsal renk #a3174a */
.qm-step.active {
  border-left-color: #a3174a;
}

.qm-step.done .qm-step-icon {
  border-color: #28a745;
  color: #28a745;
}

.qm-step.pending .qm-step-icon {
  opacity: 0.6;
}

.qm-step-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
}

.qm-loading-footer {
  padding: 10px 16px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.qm-loading-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
  .qm-loading-modal {
    width: 94vw;
  }
}


