body {
    background: #0b2a86;
}

.wizard-shell {
    max-width: 980px;
    margin: 24px auto;
    /*background: rgba(255, 255, 255, .12);*/
    border-radius: 16px;
    padding: 16px;
}

.wizard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    background: #fff;
    border-radius: 16px;
}

.stepper .step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.stepper .dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #e9ecef;
    color: #6c757d;
    flex: 0 0 auto;
}

.stepper .label {
    font-size: 14px;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stepper .line {
    height: 2px;
    background: #e9ecef;
    flex: 1;
    border-radius: 999px;
}

.stepper .step.active .dot,
.stepper .step.done .dot {
    background: #f59f00;
    color: #fff;
}

.stepper .step.active .label {
    color: #212529;
    font-weight: 600;
}

.stepper .step.done .label {
    color: #212529;
}

.wizard-body {
    padding: 22px;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-top: 1px solid #eef1f4;
    background: #fff;
}

.rounded-input {
    border-radius: 999px;
}

textarea.form-control {
    border-radius: 14px;
}

.hint-box {
    background: #e7f1ff;
    border: 1px solid #b6d4fe;
    color: #0b2a86;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
}

.drop-zone {
    border: 2px dashed #ced4da;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    background: #fafbfc;
}

.drop-zone.dragover {
    border-color: #0d6efd;
    background: #f0f6ff;
}

.small-muted {
    font-size: 12px;
    color: #6c757d;
}

.select2-selection{
    border-radius: 999px !important;
}