
.navi{
    display:none;
}


/* Only show navigation bar on mobile devices */
@media (max-width: 768px) {
    .navi {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 55px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        background-color: #0a36c6ff;
        display: flex;
        z-index: 1000;
    }

    .nav_link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        min-width: 50px;
        overflow: hidden;
        white-space: nowrap;
        font-family: 'Montserrat', sans-serif;
        font-size: 10px;
        color: white;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        transition: background-color 0.1s ease-in-out;
    }

    .nav_link:hover {
        background-color: #eeeeee;
        color: #0a36c6ff;
    }

    .nav_link--active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        min-width: 10px;
        overflow: hidden;
        white-space: nowrap;
        font-family: 'Montserrat', sans-serif;
        font-size: 10px;
        color: #0a36c6ff;
        background-color: #f1f1f0;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        transition: background-color 0.1s ease-in-out;
        color: #0a36c6ff;
        border: 2px solid #0a36c6ff;
         border-radius: 100px; 
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
        padding: 0;
    }

    .nav_icon {
        font-size: 18px;
    }
}
