#wizard-success {
    background-color: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

#wizard-success img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

#wizard-success h1 {
    color: #28a745;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

#wizard-success p {
    font-size: 16px;
    color: #555;
    max-width: 500px;
    margin: 0 auto; /* merkeze hizala */
}#wizardSteps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

#wizardSteps .nav-link {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#wizardSteps .nav-link.active {
    background-color: #00AEEF;
    color: white;
    border-color: #00AEEF;
}

#wizardSteps .nav-link:hover:not(.active):not(.disabled) {
    background-color: #d6f0fa;
    cursor: pointer;
}

/* Tüm form adımını ortala */
.wizard-step {
    text-align: center;
    line-height: 16px;
}

/* Etiketleri ortala ve kalınlaştır */
.wizard-step label {
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Form alanlarını ortada sabit genişlikte göster */
.wizard-step input,
.wizard-step textarea {
    max-width: 500px;
    margin: 0 auto 1rem auto;
}

/* Butonları ortala */
.wizard-step .btn {
    margin: 0 0.25rem;
    padding: 10px 25px;
}

/* Özel buton renkleri */
.btn-primary {
    background-color: #00AEEF;
    border-color: #00AEEF;
}
.btn-primary:hover {
    background-color: #008fc7;
    border-color: #008fc7;
}
.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}
.form-check {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 6px;
    background: #f3f3f3;
    border-radius: 6px;
}

.need-radio-group .form-check-label {
    font-weight: normal !important;
}

.sticky-button {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1055;
  background-color: #007bff;
  color: #fff;
  padding: 10px 12px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  cursor: pointer;
}