.simple-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #4a4848;
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        padding: 0px 0;
        box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
        height: 60px; /* adjust to your desired height */
}

/** icons 
Members / Users: gcis gci-users
Grouos / gcis gci-user
Notifications: gcis gci-bell
Messages / Inbox: gcis gci-envelope 
Comments / gcis gci-comments
Settings / Filters: gcis gci-cog
Search: gcis gci-search
Photos: gcis gci-camera
Groups: gcis gci-th-list or gcis gci-th-large
Add: gcis gci-plus
More / Ellipsis: gcis gci-ellipsis-h or gcis gci-ellipsis-v
**/



.menu-item-wrapper {
    flex: 1;
    height: 100%; /* make it fill the full height of the bar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background-color: #302f2f;
    margin-right:1px;
    margin-top:4px;
    padding:4px;
    transition: background-color 0.3s;
    color:#FFF;
}

.menu-item-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.menu-item-wrapper.current-menu-item,
.menu-item-wrapper a.current-menu-item {
    background-color: #222; /* highlight color for active item */
}


.simple-mobile-bar .menu-item-wrapper i {
    font-size: 20px;
    display: block;
}

.simple-mobile-bar .icon-label {
    font-size: 12px;
    margin-top: 2px;
    display: block;
}

/* More menu overlay styling */
#more-menu-overlay {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: #222;
    color: #FFF;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10000;
    display: none;             /* hide by default */
}

#more-menu-overlay .more-menu .menu-item-wrapper {
    padding: 10px;
    border-bottom: 1px solid #444;
    text-align: center;
}

#more-toggle {
    cursor: pointer;
    padding: 0 10px;
    user-select: none;
}

.menu-item-wrapper.active a {
    color: #ff6600; /* highlight color */
    font-weight: bold;
}

.menu-item-wrapper a {
    color: #fff; /* default color */
    text-decoration: none;
}

/************************************************************************/
/**** show menu only on mobile ****/
/* Hide by default */
.simple-mobile-bar {
    display: none;
}

/* Show on small screens */
    @media (max-width: 768px) {
    .simple-mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #4a4848;
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        padding: 0; /* No extra padding */
        box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
        height: 100px; /* full height bar */
    }
}

#more-menu-overlay {
    position: fixed;
    bottom: 100px; /* match height of the bar */
    left: 0;
    right: 0;
    background: #222;
    color: #FFF;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
}



@media (max-width: 768px) {
    #more-menu-overlay {
        display: none; /* It's still hidden by default; JS can toggle it */
    }

    .gc-header{
        visibility: hidden; /* Hide the header on mobile */
    }
}

