.mobile-nav {
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    align-items: center;
    width: 100%;
    margin: 0;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

/* Hide mobile nav on desktop screens - Force hide with multiple rules */
@media (min-width: 992px) {
    .mobile-nav,
    div.mobile-nav,
    .mobile-nav.mobile-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
}

.mobile-nav a {
  color: #6c757d;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  flex: 1;
  padding: 0 10px;
  text-align: center;
}

.mobile-nav a i {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.mobile-nav a.active {
  color: #2196F3;
}
