.bottom-nav {
    background: var(--layer-surface);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--layer-top);
    height: 80px;
    padding: 0 var(--size-3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: var(--font-size-body-small);
    box-shadow: var(--elevation-2);

    a.navigation-bar-item {
        color: var(--on-surface-variant);
        text-decoration: none;
        display: inline-flex;
        flex-direction: column;
        text-align: center;

        margin-bottom: 10px;
        .state-layer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--size-1);
            position: relative;
            height: 32px;
            width: 64px;
            margin-inline: auto;
            
        }
        &.active .state-layer {
            background-color: var(--secondary-container);
            color: var(--on-secondary-container);
            border-radius: var(--radius-full);
        }
    }
}
.badge {
    display: none;
}
.badge__small {
    position: absolute;
    top: 2px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: var(--error);
    color: var(--on-error);
    border-radius: 4px;
}

.badge:not(:empty) {
    position: absolute;
    top: -4px;
    right: 8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--error);
    color: var(--on-error);
    border-radius: 8px;
    font-size: var(--font-size-label-small);
    display: flex;
    align-items: center;
    justify-content: center;
}