.reservation-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    opacity: .65;
    transition: .2s ease;
}

.step-item.active {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item.active .step-circle {
    background: #5b5bd6;
    color: #fff;
    box-shadow: 0 6px 18px rgba(91, 91, 214, .25);
}

.step-line {
    width: 60px;
    height: 2px;
    background: #dee2e6;
}

.step-title {
    font-weight: 700;
    font-size: 14px;
}

.step-subtitle {
    font-size: 12px;
    color: #6c757d;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #5b5bd6;
    margin-bottom: 2px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0,0,0,.12);
}

#wizard-step-1,
#wizard-step-2 {
    min-height: 320px;
}

.modal .form-control,
.modal .form-select,
.modal textarea {
    min-height: 44px;
    border-radius: 12px;
}

.modal textarea {
    min-height: 110px;
}

#remainingAmountPreview {
    font-weight: 700;
    color: #198754;
}
