﻿:root {
    --homeDefaultCol: #7f9ea4;
}

.container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.navbar, #navbar {
    display: none !important;
}

.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* max-width: 500px;*/
    margin-left: auto;
    margin-right: auto;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--homeDefaultCol, #7f9ea4);
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

    .mobile-navbar .nav-item {
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        padding: 6px 8px;
        border-radius: 4px;
        transition: background 0.2s;
    }

        .mobile-navbar .nav-item:active,
        .mobile-navbar .nav-item:hover {
            background: rgba(255,255,255,0.15);
        }
