/* -- ANIMACJE I PODSTAWY -- */
.wizard-step {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.przycisk-secondary {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.przycisk-secondary:hover {
    background-color: #ccc;
}

.wizard-error-msg {
    color: #dc3232;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    border: 1px solid #dc3232;
    border-radius: 4px;
    background-color: #fff8f8;
}

/* -- PASEK POSTĘPU (STEPPER) -- */
.wizard-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.wizard-progress-step {
    opacity: 0.5; /* Domyślnie nieaktywne kroki są przygaszone */
    transition: opacity 0.3s ease;
    border-bottom: 5px solid #d62664; /* Border dla każdego kroku */
    padding-top: 30px;
    padding-bottom: 30px;
}

.wizard-progress-step.active {
    opacity: 1; /* Aktywny krok świeci w pełni */
}

.wizard-progress-step .step-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-progress-step .step-circle {
    background-color: #d62664;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
    font-size: 21px;
}

.wizard-progress-step .step-text {
    font-size: 18px;
    color: #2D2D2D;
}

.wizard-progress-step.is-clickable {
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.wizard-progress-step.is-clickable:hover {
    opacity: 0.8; /* Lekkie rozjaśnienie po najechaniu, aby zachęcić do kliknięcia */
}