Tab CSS Cleanup

Below is some CSS to clean up the default tabs. They always looked incomplete to me. Place this code at the layout level.

/* =========================================================
   GLOBAL TADABASE COLUMN TABS
   ========================================================= */

.x-type-col-tabs > ul.nav-tabs {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 12px 16px;

    background: var(--white, #fff);
    border: 1px solid #e5e9ef;
    border-radius: 18px;

    list-style: none;
}

/* Remove Bootstrap tab borders */
.x-type-col-tabs > ul.nav-tabs::before,
.x-type-col-tabs > ul.nav-tabs::after {
    display: none;
}

/* Individual tabs */
.x-type-col-tabs > ul.nav-tabs > li {
    float: none;
    margin: 0;
}

/* Tab buttons */
.x-type-col-tabs > ul.nav-tabs > li > a {
    display: block;

    margin: 0;
    padding: 10px 18px;

    background: #f3f6f9;
    color: var(--blue, #0B2341);

    border: 0 !important;
    border-radius: 14px;

    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;

    transition:
        background-color .15s ease,
        color .15s ease,
        box-shadow .15s ease;
}

/* Hover */
.x-type-col-tabs > ul.nav-tabs > li:not(.active) > a:hover,
.x-type-col-tabs > ul.nav-tabs > li:not(.active) > a:focus {
    background: #e9eef4;
    color: var(--blue, #0B2341);
}

/* Active tab */
.x-type-col-tabs > ul.nav-tabs > li.active > a,
.x-type-col-tabs > ul.nav-tabs > li.active > a:hover,
.x-type-col-tabs > ul.nav-tabs > li.active > a:focus {
    background: var(--blue, #0B2341);
    color: #fff;

    border: 0 !important;
    box-shadow: none;
}

/* Mobile */
@media (max-width: 767px) {
    .x-type-col-tabs > ul.nav-tabs {
        padding: 8px;
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .x-type-col-tabs > ul.nav-tabs > li {
        flex: 0 0 auto;
    }

    .x-type-col-tabs > ul.nav-tabs > li > a {
        padding: 9px 14px;
        white-space: nowrap;
    }
}