/* Bottom Navigation Menu Styles */
#bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 10000;
    border-top: 1px solid #eee;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 11px;
    flex: 1;
    transition: color 0.3s ease;
}

.bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-nav-item.active {
    color: #f4a51c; /* Brand Color */
}

.bottom-nav-item:active {
    transform: scale(0.95);
}

/* Visibility Rules: Only show on mobile (below 768px) */
@media (min-width: 768px) {
    #bottom-menu {
        display: none;
    }
}

/* Adjust body padding to prevent content from being hidden behind the menu */
@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
}