/* Mobile Menu Styles */
.ufc-mobile-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    /* Dark background */
    border-top: 1px solid #333;
    z-index: 9999;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.ufc-mobile-menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    transition: color 0.3s ease;
}

.ufc-mobile-menu-item:hover,
.ufc-mobile-menu-item.active {
    color: #d20a0a;
    /* UFC Red */
}

.ufc-mobile-menu-icon {
    margin-bottom: 5px;
}

.ufc-mobile-menu-icon svg {
    width: 24px;
    height: 24px;
}

.ufc-mobile-menu-label {
    font-family: 'Bebas Neue', sans-serif;
    /* Assuming Bebas Neue is available */
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Add padding to body to prevent content from being hidden behind menu */
body {
    padding-bottom: 70px;
}