.nav-link:hover {
    color: #DD8601;
}

.dropdown-item:hover {
    color: #ffffff;
    background-color: #DD8601;
}

table.dataTable {
    border-radius: 6px;
    overflow: hidden;
    border-collapse: collapse;
}

/* Tabel dalam responsive details */
table.dataTable .child table {
    border: 1px solid #dddddd2f;

    /* Border luar */
    border-collapse: collapse;

    /* Menggabungkan border */
    width: 100%;
}

/* Sel dalam detail */
table.dataTable .child td {
    /* border: 1px solid #ddd; */
    padding: 4px;
}

/* Tabel Header Biasa */
table.dataTable thead th {
    background-color: #FFFFFF0D;
}

/* Fixed header */
table.dataTable.fixedHeader-floating th {
    background-color: #4b4b4b !important;

    /* Warna fixed header */
    color: #fff !important;

    /* Warna teks fixed header */
}

/* table.dataTable tbody td {
    font-size: 13px;
} */
table.dataTable tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.151);
}

.positive {
    color: #00DC16;
    font-weight: 600;
}

.negative {
    color: #ff3c3c;
    font-weight: 600;
}

.warning {
    color: #F9B700;
    font-weight: 600;
}

.loader {
    margin: 0 auto;
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);

    >div {
        height: 100%;
        width: 5px;
        display: inline-block;
        margin-left: 2px;
        -webkit-animation: delay 0.8s infinite ease-in-out;
        animation: delay 0.8s infinite ease-in-out;
    }

    .bar1 {
        background-color: #754fa0;
    }

    .bar2 {
        background-color: #09b7bf;
        -webkit-animation-delay: -0.7s;
        animation-delay: -0.7s;
    }

    .bar3 {
        background-color: #90d36b;
        -webkit-animation-delay: -0.6s;
        animation-delay: -0.6s;
    }

    .bar4 {
        background-color: #f2d40d;
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

    .bar5 {
        background-color: #fcb12b;
        -webkit-animation-delay: -0.4s;
        animation-delay: -0.4s;
    }

    .bar6 {
        background-color: #ed1b72;
        -webkit-animation-delay: -0.3s;
        animation-delay: -0.3s;
    }
}

@-webkit-keyframes delay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.05);
    }

    20% {
        -webkit-transform: scaleY(1.0);
    }
}

@keyframes delay {
    0%,
    40%,
    100% {
        transform: scaleY(0.05);
        -webkit-transform: scaleY(0.05);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/* Untuk responsive tampilan mobile */
@media (max-width: 600px) {
    table.dataTable .child table {
        border: 1px solid #dddddd2f;

        /* Border luar */
        border-collapse: collapse;

        /* Menggabungkan border */
        width: 100%;
    }

    th {
        font-size: 14px;
    }

    td {
        font-size: 12px;

        /* Mengurangi ukuran font di layar kecil */
    }
}





