/* Progress Wizard Styles */
.progress-wizard {
    display: flex;
    padding: 0;
    margin-bottom: 30px;
    list-style: none;
    border-bottom: 2px solid #e0e0e0;
}

.progress-wizard-step {
    position: relative;
    flex: 1;
    text-align: center;
    padding-bottom: 15px;
}

.progress-wizard-stepnum {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #999;
}

.progress-wizard-step .progress {
    height: 4px;
    background-color: #e0e0e0;
    margin-bottom: 10px;
    overflow: visible;
    position: relative;
}

.progress-wizard-step .progress-bar {
    background-color: #dc3545;
    width: 0;
}

.progress-wizard-dot {
    width: 16px;
    height: 16px;
    background-color: #e0e0e0;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Complete state */
.progress-wizard-step.complete .progress-wizard-stepnum {
    color: #dc3545;
}

.progress-wizard-step.complete .progress-bar {
    width: 100%;
}

.progress-wizard-step.complete .progress-wizard-dot {
    background-color: #dc3545;
    border-color: #dc3545;
}

.progress-wizard-step.complete .progress-wizard-dot:after {
    content: "✓";
    color: white;
    font-size: 10px;
    position: absolute;
    top: -2px;
    left: 3px;
}

/* Disabled state */
.progress-wizard-step.disabled .progress-wizard-stepnum {
    color: #ccc;
}

.progress-wizard-step.disabled .progress-wizard-dot {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
}

/* Normalize form field heights (exclude textareas) */
input.form-control,
.form-select {
    height: 38px !important; /* Bootstrap 5 default calculated height */
}

/* Ensure consistent white background for all form inputs */
.form-control,
.form-control:focus,
input.form-control,
textarea.form-control {
    background-color: #fff;
}

/* Responsive adjustments */
@@media (max-width: 768px) {
    .progress-wizard-stepnum {
        font-size: 10px;
    }
}

@@media (max-width: 576px) {
    .progress-wizard-stepnum {
        display: none;
    }
}

