.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid #ddd;
}
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
.wizard-steps .step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 12px 8px;
    border-bottom: 3px solid #ddd;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    transition: all 0.3s ease;
}
.wizard-steps .step.active {
    border-bottom: 3px solid #007bff;
    color: #007bff;
}
.wizard-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}
.btn-exit {
    background: none;
    border: none;
    font-size: 18px;
    color: red;
    cursor: pointer;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .wizard-steps {
        gap: 5px;
    }

    .wizard-steps .step {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 8px 5px;
    }
}

@media (max-width: 480px) {
    .wizard-steps .step {
        min-width: 100px;
        font-size: 0.75rem;
    }
}

