nav.mobile-only {
    position: absolute;
    bottom: 0;
    z-index: 999;
    background-color: var(--light-mode-bg-color);
    width: 100%;
    height: 65px;
    display: none;
    align-items: flex-start;
    justify-content: space-around;
    padding-bottom: 5px;
}

[data-theme="dark"] nav.mobile-only {
    background-color: var(--dark-mode-bg-color);
}

.mobile-nav-tab-button {
    all: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--light-mode-text-color);
    width: 50px;
}

[data-theme="dark"] .mobile-nav-tab-button {
    color: var(--dark-mode-text-color);
}

.mobile-nav-tab-button .material-symbols-outlined {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 100vw;
    transition: background-color 0.3s;
}

.mobile-nav-tab-button:is(:hover, .active) .material-symbols-outlined {
    background-color: var(--light-mode-bg-select);
}

.mobile-nav-tab-button:focus-visible .material-symbols-outlined {
    outline: 2px solid var(--light-mode-text-color);
}

[data-theme="dark"] .mobile-nav-tab-button:is(:hover, .active) .material-symbols-outlined {
    background-color: var(--dark-mode-bg-select);
}

[data-theme="dark"] .mobile-nav-tab-button:focus-visible .material-symbols-outlined {
    outline: 2px solid var(--dark-mode-text-color);
}

.mobile-nav-tab-button .mobile-nav-tab-title {
    font-size: 0.8rem;
}

@media screen and (max-width: 555px) {
    nav.mobile-only {
        display: flex;
    }
}