.infoAssetMenu,
.tabsContainer{
    display: flex;
    align-items: center;
    min-height: 70px;
}

.tabsContainer {
    justify-content: center;
    padding: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1rem;
}

.tabsContainer ol {
    margin: 0;
    padding-left: 0;
    gap: .5rem;
    list-style: none;
    counter-reset: tab-counter;
    flex-wrap: wrap;
    justify-content: center;
}

.infoAssetMenu {
    justify-content: space-between;
}

.infoAssetMenu-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.infoAssetMenu-left .asset-name {
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    padding-left: 1.5rem;
}

.assetBadge{
    height: 3rem;
    width: 3rem;
}

.tabsContainer li {
    cursor: pointer;
    padding: 0.5rem;
    transition: background-color 0.2s;
    border-radius: 0.25rem;
    counter-increment: tab-counter;
    & a {
        color: var(--gray-700);
    }
}

.tabsContainer li::before {
    content: counter(tab-counter) ". ";
    font-weight: 600;
    margin-right: 0.5rem;
}

.tabsContainer li:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.tabsContainer li.active {
    background-color: rgba(59, 130, 246, 0.15);
    font-weight: 500;
}

@media (max-width: 992px) {
    .tabsContainer ol {
        gap: 1rem;
    }

    .tabsContainer li {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .tabsContainer ol {
        gap: 0.5rem;
    }

    .tabsContainer li {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }

    .tabsContainer li::before {
        margin-right: 0.25rem;
    }
}

@media (max-width: 576px) {
    .tabsContainer {
        padding: 0.25rem;
    }

    .tabsContainer ol {
        gap: 0.25rem;
        row-gap: 0.5rem;
    }

    .tabsContainer li {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
}
