body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.content {
    padding: 20px;
    text-align: center;
}

.bottom-nav {
    display: none; /* Verberg de navigatie standaard */
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* Zorg dat inhoud niet onder de navigatie schuift */
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #DA1B01;
        justify-content: space-around;
        padding: 12px 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid white;
        z-index: 999;
    }

    .nav-item {
        color: white;
        text-decoration: none;
        text-align: center;
        flex: 1;
        font-size: 13px;
        font-weight: bold;
    }

    .nav-item:hover,
    .nav-item:active {
        background-color: #FFC90E;
        color: #000;
    }

    .nav-item .icon {
        display: block;
        font-size: 20px;
        margin-bottom: 4px;
    }
}