.table__thead-position {
    position: sticky;
    inset-block-start: 0;
    z-index: 1;
    background: #fff;
    top: 80px;
}

@media only screen and (max-width: 992px) {
    .table__thead-position {
        position: static !important;
        top: 0 !important;
    }
}
/* =========================
   BREADCRUMB STYLES
   ========================= */

.asx-breadcrumb-wrapper {
    margin-bottom: 12px ;
}

.asx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 20px;
    color: #475569;
}

.asx-breadcrumb-home {
    display: flex;
    margin: 0;
}

.asx-breadcrumb-home a {
    display: flex;
    align-items: center;
    color: #009c9f;
    text-decoration: none;
}

.asx-breadcrumb-home i {
    font-size: 18px;
}

.asx-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.asx-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.asx-breadcrumb-item::before {
    content: "›";
    color: #0f172a;
    font-size: 18px;
}

.asx-breadcrumb-item:first-child::before {
    content: "";
}

.asx-breadcrumb-item a {
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease;
}

.asx-breadcrumb-item a:hover {
    color: #0284c7;
}

.asx-breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}
