/* Center the navigation tabs */
.md-header__inner {
    display: flex;
    justify-content: center;
}

/* Ensure navigation tabs are centered */
.md-tabs {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* Adjust the width of the nav items to stay centered */
.md-tabs__list {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Center the navigation items inside the tabs */
.md-tabs__item {
    flex-grow: 0;
}
