/*itsrlabs/apps/platform/static/css/_shared/nav_header_footer.css*/
/* Shared nav/footer utilities – underline pills (profile tabs), footer. Old main-nav styles removed in favor of nav_header_footer_2 + variant. */

/* Underline-style pills (e.g. user profile tabs, wallet statement tabs) */
.underline-pills .nav-link {
    background-color: transparent !important;
    border: none !important;
    font-weight: 500;
    color: #6c757d;
    position: relative;
    transition: color 0.3s ease;
}

.underline-pills .nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
}

.underline-pills .nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 2px;
    background-color: #0d6efd;
    border-radius: 1px;

    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.underline-pills .nav-link.active::after {
    width: 60%;
}

/* ========= FOOTER =============================================== */

footer {
    padding: 20px 0;
    background: linear-gradient(to top, #1a1a1a, #4a4a4a);
    color: #ffffff;
    text-align: center;
}
