﻿/* Bottom Navigation Bar - Mobile Style */

.bottom-nav {
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 8px 0;
    z-index: 999;
    height: 80px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff !important;
    flex: 1;
    height: 100%;
    max-width:100% !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}



.nav-item span {
    font-size: 12px;
    font-weight: 500;
    
}

/* Responsive - Hide labels on smaller screens */
@media (max-width: 600px) {
    .bottom-nav {
        height: 70px;
    }

    .nav-item img {
        width: 24px;
        height: 24px;
        margin-bottom: 2px;
        filter: brightness(0) invert(1);
    }

    .nav-item span {
        font-size: 11px;
    }
}




/* Add padding to body to avoid content being hidden under the navbar */
@media (max-width: 600px) {
    body {
        padding-bottom: 70px;
    }
}
