#page-loading-bar {
    position: fixed;
    left: 0;
    top: 0;
    height: 4px;
    width: 0%;
    background: #0d6efd; /* biru bootstrap */
    z-index: 9999999;
    display: none;
    transition: width 0.3s ease;
}

#main-content {
    min-height: calc(100vh - 90px - 40px);
}

#auth #auth-left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#auth #auth-left .auth-subtitle {
    font-size: 1.2rem;
}

.sidebar-wrapper .menu {
    padding: 0 1.8rem;
}

.sidebar-item.has-sub>.sidebar-link:after {
    right: 6px;
}

.dropdown .avatar {
    background: #25396f;
    color: #FFFFFF;
    width: 39px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-black {
    display: none;
}

.logo-white {
    display: none;
}



html[data-bs-theme=light] .logo-white {
    display: none;
}

html[data-bs-theme=light] .logo-black {
    display: block;
}

html[data-bs-theme=dark] .sidebar-wrapper .menu {
    padding: 0 1.8rem;
}

html[data-bs-theme=dark] .sidebar-wrapper .menu .sidebar-link::after {
    right: 6px;
}

html[data-bs-theme=dark] .logo-white {
    display: block;
}

html[data-bs-theme=dark] .logo-black {
    display: none;
}

html[data-bs-theme=dark] tbody tr td {
    color: #1e1e2d !important;
}


.rounded-table table {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.rounded-table .table {
    border-collapse: separate !important;
    border-spacing: 0;
}

.rounded-table th,
.rounded-table td {
    border: 0 !important;
}

.rounded-table thead th {
    background: #E3ECFA;
    color: #4C4C5C;
}

.rounded-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.rounded-table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

@media (min-width: 769px) {
    .hover-row tbody tr:hover td {
        background: #f2f2f2 !important;
        cursor: pointer;
        transition: background 0.2s;
    }
}

@media (max-width: 768px) {

    .no-more-table table,
    .no-more-table thead,
    .no-more-table tbody,
    .no-more-table th,
    .no-more-table td,
    .no-more-table tr {
        display: block;
    }

    .no-more-table thead tr {
        display: none;
    }

    .no-more-table tr {
        margin-bottom: 1rem;
        padding: 1rem;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #e4e4e4;
        box-shadow: 0 .1rem .35rem rgba(0, 0, 0, .12);
    }

    .no-more-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        padding-top: .75rem;
        padding-bottom: .75rem;
        text-align: right;
    }

    .no-more-table td:last-child {
        border-bottom: none;
    }

    .no-more-table td:before {
        position: absolute;
        left: 1rem;
        top: .75rem;
        font-weight: 600;
        text-transform: uppercase;
        white-space: nowrap;
        content: attr(data-title);
        color: #6c757d;
    }

    .no-more-table tr:hover td {
        background: none !important;
    }

    .rounded-table tbody tr:nth-child(even) td {
        background: unset;
    }

}