.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 5px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    padding: 8px 0;
    transition: all 0.2s ease;
    cursor: pointer;
}
a {
    text-decoration: none;
    color: inherit;
}
.nav-item.active {
    color: #4ed462;
}
.nav-item.active svg * {
    fill: #4ed462;
}
svg {
    transition: fill 0.2s ease;
}

.nav-item:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.nav-text {
    font-size: 12px;
    transition: all 0.2s ease;
}

.nav-item.active .nav-icon {
    transform: translateY(-2px);
}

.nav-item.active .nav-text {
    font-weight: 600;
}

@media (max-height: 992px) {
    .bottom-nav {
        height: 50px;
    }
    
    .nav-icon {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .nav-text {
        font-size: 11px;
    }
}