    /* CSS untuk tab menu */
    .nav-tabs {
        background-color: #f4f4f4;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        width: 100%;

        /* Buat tab menu mengisi seluruh lebar */
    }

    .nav-tabs .nav-item {
        margin-right: 0;
        /* Hapus margin antar item tab */
    }

    .nav-tabs .nav-link {
        color: #333;
        background-color: #f4f4f4;
        border: none;
        border-radius: 10px;
        padding: 10px 20px;
        transition: background-color 0.3s, color 0.3s;
    }

    .nav-tabs .nav-link.active {
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* CSS untuk konten tab */
    .tab-content {
        background-color: #f4f4f4;
        border: 1px solid #dee2e6;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px #00000033;
        width: 100%;
        height: 100%;
        /* Buat konten tab mengisi seluruh lebar */
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    table th {
        text-align: center;
        vertical-align: middle;
    }

    table th[rowspan="2"] {
        vertical-align: middle;
    }

    /* Gaya untuk elemen "KABUPATEN" */
    th[rowspan="2"] {
        position: sticky;
        top: 0;
        background-color: white;
        /* Sesuaikan dengan warna latar belakang yang diinginkan */
    }

    /* Gaya untuk bagian tabel */
    .table-container {
        max-height: 400px;
        /* Sesuaikan dengan tinggi maksimum yang diinginkan */
        overflow-y: auto;
    }

    /* Media query untuk layar kecil (misalnya, mode HP) */
    @media screen and (max-width: 768px) {
        .tab-content {
            max-height: 1000%;
            /* Atur tinggi chart sesuai kebutuhan Anda */
        }
    }