/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #E5E7EB;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6B7280;
    padding: 8px 4px;
    transition: all 0.2s ease;
    flex: 1;
    min-height: 60px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #22C55E;
}

.mobile-nav-item svg {
    margin-bottom: 4px;
    stroke-width: 1.5;
}

.mobile-nav-item span {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    /* Hide login/profile button in header on mobile since it's in bottom nav */
    .nav-actions .btn-outline {
        display: none !important;
    }
    
    /* Center the bot button in nav-actions on mobile */
    .nav-actions {
        justify-content: center;
    }
    
    /* Add bottom padding to main content to account for fixed bottom nav */
    .main {
        padding-bottom: 80px;
    }
    
    .footer {
        margin-bottom: 80px;
    }
}
/* Padding for scrolling */
html {
  scroll-padding-top: 110px;
}
@media only screen and (max-width: 667px) {
	html {
	  scroll-padding-top: 80px;
	}
}
