.waffle-nav {
    position: relative; 
    z-index: 9999;
}

.waffle-btn {
    background: white;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36%;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.25);
    
    position: fixed;
    top: 18px;
    right: 18px;

    z-index: 10000;
}

.waffle-icon-img {
    width: 36px;
    height: 36px;
    display: block;
    transition: transform 0.2s ease;
}

.waffle-btn:hover .waffle-icon-img {
    transform: scale(1.1);
}

.waffle-menu-grid {
    display: none;
    position: fixed;
    top: 75px;
    right: 18px;
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.25);
    padding: 15px;
    grid-template-columns: repeat(2, 120px);
    gap: 10px;

    z-index: 10001;
}

.waffle-menu-grid.active {
    display: grid;
}

.waffle-item {
    display: flex;
    height: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #e3e3e3;
    font-weight: bold;
    padding: 10px;
    border-radius: 12px;
    font-size: 18px;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.waffle-item-icon-img {
    width: 54x;
    height: 54px;
}

.waffle-item:hover {
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    filter: brightness(0.7);
}

.waffle-item:visited, .waffle-item:hover, .waffle-item:active {
    color: #e3e3e3;
}

.waffle-icon-img, .waffle-item {
    filter: brightness(0.5);
}

body.accessibility-mode .waffle-icon-img, 
body.accessibility-mode .waffle-item {
    filter: none;
    color: #333333;
}

.mobile-only {
    display: none !important;
}

@media screen and (width <= 500px) {
    .mobile-only {
        display: flex !important;
    }
}