.error-illustration {
    height: auto;
}

.error-illustration--compact {
    max-width: 220px;
    width: 100%;
}

.navbar-brand-icon {
    width: auto;
    height: 75px;
    display: block;
}

.navbar-brand-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Wizard Progress */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
    padding: 0;
    list-style: none;
}

.wizard-progress::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 1;
}

.wizard-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.wizard-step-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #dee2e6;
    color: #6c757d;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.wizard-step.active .wizard-step-icon {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.wizard-step.completed .wizard-step-icon {
    background-color: #e7f1ff;
    border-color: #0d6efd;
    color: #0d6efd;
}

.wizard-step-label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    position: absolute;
    width: 100%;
    top: 45px;
}

.wizard-step.active .wizard-step-label {
    color: #0d6efd;
    font-weight: 700;
}

.wizard-step-link {
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.wizard-step.clickable .wizard-step-icon {
    cursor: pointer;
}

.wizard-step.clickable:hover .wizard-step-icon {
    transform: scale(1.1);
}

.wizard-progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background-color: #0d6efd;
    z-index: 1;
    transition: width 0.3s ease;
}