/* Mobile Navigation Styles */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    padding: 5px;
    transition: color 0.3s;
}

.mobile-nav-link i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav-link span {
    display: block;
}

.mobile-nav-link.active {
    color: #FF6F0F;
}

/* Show mobile navigation on small screens */
@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind nav */
    body {
        padding-bottom: 70px;
    }

    /* Hide back to top button on mobile to prevent overlap */
    .back-to-top {
        bottom: 80px !important;
    }
}

/* PWA Install Prompt Styles */
.pwa-install-prompt {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    width: 90%;
    max-width: 400px;
    z-index: 999;
}

.pwa-install-prompt h4 {
    margin: 0 0 10px;
    color: #333;
}

.pwa-install-prompt p {
    margin: 0 0 15px;
    color: #666;
}

.pwa-install-prompt .close-prompt {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.pwa-install-prompt .install-button {
    background: #FF6F0F;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.pwa-install-prompt .install-button:hover {
    background: #e65d00;
}