/* Bottom Menu Styles */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000; /* Ensure it's above other content */
}

.bottom-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bottom-menu a i { /* For potential icons */
    margin-bottom: 4px;
    font-size: 18px;
}

.bottom-menu a.active {
    color: #ffc107; /* Highlight color for active link */
    font-weight: bold;
}

/* Add some padding to the bottom of the body to prevent content from being hidden by the fixed menu */
body {
    padding-bottom: 60px; /* Adjust based on menu height */
}
