/* --- Bottom Navbar Styles --- */
.bottom-navbar {
    width: 100%;
    background-color: #1c1c1c;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    margin-top: 40px; /* Optional spacing from content above */
}

/* Links inside bottom navbar */
.bottom-navbar a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    flex-grow: 1;
    transition: background-color 0.3s, color 0.3s;
}

.bottom-navbar a:hover {
    background-color: #ddd;
    color: black;
}

.bottom-navbar a.active {
    background-color: #218838;
    color: white;
}

/* Responsive: Stack items on very small screens */
@media screen and (max-width: 600px) {
    .bottom-navbar {
        flex-direction: column;
        padding: 5px 0;
    }

    .bottom-navbar a {
        padding: 8px;
        font-size: 15px;
    }
}

/* Layout to keep footer at bottom */
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}
