label.required-field::after {
    content: " *";
    color: var(--bs-danger);
    font-weight: bold;
    margin-left: 0.2rem;
}

[data-bs-theme="light"] .form-control,
[data-bs-theme="light"] .form-select {
    background-color: var(--bs-white);
    border-color: var(--bs-gray-400);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

[data-bs-theme="light"] .form-control:focus,
[data-bs-theme="light"] .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.04),
        0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.18);
}

[data-bs-theme="light"] .form-check-input {
    border-color: var(--bs-gray-500);
}

[data-bs-theme="light"] .form-check.border,
[data-bs-theme="light"] fieldset.border,
[data-bs-theme="light"] .card form .bg-body-tertiary {
    background-color: var(--bs-gray-100) !important;
    border-color: var(--bs-gray-300) !important;
}

.wizard-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 0.5rem;
}

.wizard-step {
    align-items: center;
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: var(--bs-border-radius-pill);
    color: var(--bs-secondary-color);
    display: flex;
    font-weight: 600;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    text-decoration: none;
}

.wizard-step:hover {
    background: var(--bs-secondary-bg);
    color: var(--bs-emphasis-color);
}

.wizard-step.is-current {
    background: rgba(var(--bs-primary-rgb), 0.14);
    border-color: rgba(var(--bs-primary-rgb), 0.45);
    color: var(--bs-primary);
}

.wizard-step-number {
    align-items: center;
    background: var(--bs-body-bg);
    border: 1px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    font-size: 0.8rem;
    height: 1.65rem;
    justify-content: center;
    width: 1.65rem;
}

.wizard-format-card {
    background: var(--bs-tertiary-bg);
}

.wizard-sticky-card {
    top: 1rem;
}

.sales-wizard .wizard-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 0.5rem;
}

.sales-wizard .wizard-step {
    min-height: auto;
}

.sales-wizard .wizard-step.is-complete {
    background: var(--bs-success-bg-subtle);
    border-color: rgba(var(--bs-success-rgb), 0.35);
    color: var(--bs-success-text-emphasis);
}

.sales-wizard .wizard-step-content {
    display: block;
}

.sales-wizard .wizard-step-label {
    display: block;
    line-height: 1.25;
}

.sales-wizard .wizard-step-detail {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.25;
    margin-top: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sales-wizard .variant-link {
    color: inherit;
    text-decoration: none;
}

.sales-wizard .variant-link:hover,
.sales-wizard .variant-link.is-selected {
    background: var(--bs-tertiary-bg);
}
