@media only screen and (max-width: 768px) {
    body2 {
        padding-bottom: 60px; /* Adjust based on the height of your bottom nav */
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #333;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 1000; /* Ensure it stays above other content */
    }

    .nav-item {
        color: white;
        text-align: center;
        text-decoration: none;
        flex: 1;
    }

    .nav-item i {
        font-size: 24px;
    }

    .nav-item span {
        display: block;
        font-size: 12px;
    }

    .nav-item:hover {
        background-color: #575757;
    }
}
