.mobile-only-bottom-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 65px !important;
    background-color: #ffffff !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
    border-top: 1px solid #eeeeee !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
}

.bar-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #555555 !important;
    text-decoration: none !important;
    flex: 1 !important;
    transition: color 0.2s ease !important;
}

.bar-item:active img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(89%) saturate(2476%) hue-rotate(1deg) brightness(102%) contrast(106%) !important;
}

/* Optional: Make the text turn orange at the same time */
.bar-item:active span {
    color: #FF6600 !important;
}

.bar-item span {
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

.bar-item:active,
.bar-item:hover {
    color: #1abb9c !important;
}

@media (min-width: 768px) {
    .mobile-only-bottom-bar {
        display: none !important;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 80px !important;
    }

    #app, .footer {
        margin-bottom: 20px !important;
    }
}

.w-30 {
    width: 30% !important;
}

