.appNavigation {
    background-color: var(--color-green);
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: none;
    border-top: 3px solid var(--color-surface);
    padding-bottom: env(safe-area-inset-bottom);
}

.appNavigationNavList {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.appNavigationNavListItem {
    flex: 1;
}

.appNavigationNavListItemLink {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #084e16;
    letter-spacing: 1px;
    height: 100%;
}

.appNavigationNavListItemLink.active {
    color: #f7f8f4;
}

.appNavigationNavListItemLink span {
    display: flex;
    align-items: center;
    font-size: 30px;
}

.appNavigationNavListItemPlatePassQrButton {
    appearance: none;
    color: #FFFFFF;
    background: #f68c3d;
    height: 60px;
    width: 60px;
    border-radius: 100vh;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border: 3px solid var(--color-surface);
    transform: translateY(-25%) scale(1.2);
    -webkit-tap-highlight-color: transparent; /* Removes blue overlay on touch on Safari/iOS */
    margin: 0 auto;
}

.appNavigationNavListItemPlatePassQrButton span {
    font-size: 35px;
}

.appNavigationPlatePassQrModalTitle {
    font-family: "Eames Century Modern", sans-serif;
    color: var(--color-green);
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 33px;
}

.appNavigationPlatePassQrModalNotMember {
    display: none;
}

.appNavigationPlatePassQrModalNotMember.active {
    display: block;
}

.appNavigationPlatePassQrModalNotMemberActions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 32px;
    flex: 1;
}

.appNavigationPlatePassQrModalMember {
    display: none;
}

.appNavigationPlatePassQrModalMember.active {
    display: block;
}

.appNavigationPlatePassQrModalMemberCode {
    font-size: 16px;
    color: #666;
    margin: 0 0 32px 0;
}

.appNavigationPlatePassQrModalMemberRenews {
    font-size: 14px;
    color: #666;
    margin: 32px 0 0 0;
}

@media (max-width: 767px) {
    .appNavigation {
        display: block;
    }
}