 .bottomNav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            border-top: 1px solid #ccc;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 999; /* Ensure the navigation stays on top */
        }

        .bottomNavItem {
            text-align: center;
            flex-grow: 1;
            padding: 5px;
            position: relative; /* Add relative position */
        }

        .bottomNavItem a {
            text-decoration: none;
            color: #333;
            display: block;
        }

        .bottomNavItem i {
            font-size: 20px;
            margin-bottom: 5px;
        }

        /* Style for vertical divider */
        .divider {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            width: 1px;
            background-color: #070322;
            margin: auto;
            height: 80%; /* Adjust divider height */
        }

        /* Hide divider for last item */
        .bottomNavItem:last-child .divider {
            display: none;
        }