/* Bottom Menu CSS - Fixed at bottom of page */
.bottom-menu-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #1d6d80;
    border-top: 1px solid #1d6d80;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-menu {
    background-color: transparent;
    padding: 15px 0;
    margin: 0;
    border-top: none;
}

.bottom-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-menu-item {
    margin: 0;
}

.bottom-menu-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    display: block;
}

.bottom-menu-link:hover {
    color: #3498db;
    text-decoration: none;
    background-color: rgba(52, 152, 219, 0.1);
}

.bottom-menu-separator {
    color: #7f8c8d;
    font-size: 14px;
    user-select: none;
}

/* Add padding to body to prevent content from being hidden behind fixed menu */
body {
    padding-bottom: 70px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .bottom-menu-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .bottom-menu-separator {
        display: none;
    }
    
    .bottom-menu-link {
        padding: 8px 15px;
        text-align: center;
        min-width: 120px;
    }
    
    body {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .bottom-menu {
        padding: 12px 0;
    }
    
    .bottom-menu-link {
        font-size: 13px;
        padding: 6px 12px;
        min-width: 100px;
    }
    
    body {
        padding-bottom: 140px;
    }
}

@media (max-width: 480px) {
    .bottom-menu {
        padding: 12px 0;
    }
    
    .bottom-menu-link {
        font-size: 13px;
        padding: 6px 12px;
        min-width: 100px;
    }
}