/*Data Table*/
.dt-full-height .dataTables_scrollBody {
    height: calc(100vh - 200px) !important;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}


/* ===== GARIS KIRI ===== */
.step::before {
    content: "";
    position: absolute;
    top: 22px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: #dee2e6;
    z-index: 0;
}

/* ===== GARIS KANAN ===== */
.step::after {
    content: "";
    position: absolute;
    top: 22px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: #dee2e6;
    z-index: 0;
}

.step:first-child::before {
    display: none;
}

.step:last-child::after {
    display: none;
}

.step.completed::before {
    background: #28a745 !important;
}

.step.active::before {
    background: #28a745 !important;
}

/* ICON CIRCLE */
.step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 18px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: transform .15s;
}

.step-circle:hover {
    transform: scale(1.05);
}

.step-circle-red {
    background: #ff0000 !important;
    color: white;
}

/* ACTIVE */
.step.active .step-circle {
    background: #007bff;
    color: white;
}

/* COMPLETED */
.step.completed .step-circle {
    background: #28a745;
    color: white;
}

/* LABEL */
.step-label {
    margin-top: 6px;
    font-size: 13px;
}

/* row manual*/
.form-row-1 {
    min-height: calc(1.5em * 1);
}

.form-row-2 {
    min-height: calc(1.5em * 2);
}

.form-row-3 {
    min-height: calc(1.5em * 3);
}

.form-row-4 {
    min-height: calc(1.5em * 4);
}