body{
    background: #f5f7fa;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #212529;
}

/* CONTAINER */

.container-fluid{
    max-width: 720px;
    margin: auto;
    padding-top: 12px;
    padding-bottom: 20px;
}

/* CARD */

.card{
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: none;
}

.card-body{
    padding: 18px;
}

/* TITLE */

.section-title{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #374151;
}

/* INFORMASI PELANGGAN */

.info-table td{
    padding-top: 7px;
    padding-bottom: 7px;
    vertical-align: top;
    border: none;
}

.info-title{
    width: 120px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.info-separator{
    width: 10px;
    text-align: center;
    color: #6b7280;
}

.info-value{
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
    word-break: break-word;
}

/* FORM */

.form-label{
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
}

.form-control,
.form-select{
    border-radius: 8px;
    border: 1px solid #d1d5db;
    min-height: 46px;
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus{
    border-color: #0d6efd;
}

textarea.form-control{
    min-height: 100px;
    padding-top: 10px;
}

/* BUTTON */

.btn{
    border-radius: 8px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 600;
}

.btn-lg{
    min-height: 50px;
    font-size: 15px;
}

/* GPS */

.gps-box{
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

/* FOTO */

.img-preview{
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

/* TABLE */

.table{
    margin-bottom: 0;
}

.table thead th{
    font-size: 13px;
    font-weight: 600;
    background: #f3f4f6;
    border-bottom: 1px solid #d1d5db;
    color: #374151;
}

.table td{
    font-size: 13px;
    vertical-align: middle;
}

/* ROW CLICK */

.table-click{
    cursor: pointer;
    /*transition: background 0.15s ease;*/
}

.table-click:hover{
    background: #f9fafb;
}

/* BADGE */

.badge{
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
}

/* MOBILE */

@media(max-width:768px){

    body{
        font-size: 13px;
    }

    .container-fluid{
        padding-left: 10px;
        padding-right: 10px;
    }

    .card-body{
        padding: 16px;
    }

    .section-title{
        font-size: 14px;
    }

    .info-title{
        width: 105px;
        font-size: 12px;
    }

    .info-value{
        font-size: 13px;
    }

    .form-control,
    .form-select{
        font-size: 16px;
    }

    .btn{
        font-size: 14px;
    }

}

/* DATA SUDAH DIPROSES */

.table-success-custom{
    background-color: #edf9f0 !important;
}

.table-success-custom:hover{
    background-color: #dff3e5 !important;
}