/* Bottom Menu Styles */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.bottom-menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.bottom-menu-button:hover, 
.bottom-menu-button.active {
    background-color: #333;
    transform: translateY(-3px);
}

.bottom-menu-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Add padding to the body to prevent content from being hidden behind the menu */
body {
    padding-bottom: 70px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .bottom-menu {
        padding: 8px 0;
    }
    
    .bottom-menu-button {
        font-size: 10px;
    }
    
    .bottom-menu-icon {
        font-size: 20px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

/* Animation for active state */
.bottom-menu-button.active .bottom-menu-icon {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} 