.dbc-pwa-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}

.dbc-pwa-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    flex: 1;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.dbc-pwa-menu-item:hover,
.dbc-pwa-menu-item:active,
.dbc-pwa-menu-item:focus {
    color: #0073aa; /* WordPress Blue, change as needed */
}

.dbc-pwa-menu-item .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}

/* Font Awesome icons - ensure consistent sizing */
.dbc-pwa-menu-item i {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide on larger screens if desired, or keep it always visible. 
   Usually PWA menus are for mobile/tablet. */
@media screen and (min-width: 769px) {
    .dbc-pwa-menu {
        display: none;
    }
}
