    /*lokasi file statis/css/custom.min.css*/
    
    /* Mengatur overflow dan ukuran untuk layout Table Halaman Utama*/
    body[data-layout="vertical"][data-sidebar-size="sm-hover"] {
        overflow: auto !important;
    }

    .main-content {
        overflow: auto !important;
        height: 100vh !important;
    }

    .page-content {
        overflow: auto !important;
        height: calc(100vh - 100px) !important;
    }

    .table-responsive {
        height: calc(100vh - 390px) !important;
        overflow-y: auto !important;
    }

    .table thead {
        position: sticky !important;
        top: 0 !important;
        z-index: 2 !important;
    }

    .table thead th {
        position: sticky !important;
        top: 0 !important;
        z-index: 2 !important;
    }

    /* =========  khusus halaman update html ========= */
    .table-responsive-form{
        height:auto    !important;   /* biarkan tinggi alami konten         */
        overflow:auto  !important;   /* atau overflow:visible; tak masalah  */
        margin-bottom: 40px !important;
    }

    /* Jika masih ingin header tabel lengket */
    .table-form thead th{
        position:sticky;
        top:0;
        z-index:10;
        background:#fff;
        box-shadow:0 2px 4px rgba(0,0,0,.04);
    }