/* Bottom Navigation Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid rgba(15, 140, 255, 0.1);
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    gap: 5px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 60px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--primary-color);
    background: rgba(15, 140, 255, 0.05);
    transform: translateY(-2px);
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.bottom-nav-item span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.bottom-nav-item:hover i,
.bottom-nav-item.active i {
    transform: scale(1.1);
}

/* Responsive Design for Bottom Navigation */
@media (max-width: 768px) {
    .bottom-nav-item span {
        display: none;
    }

    .bottom-nav-item i {
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    .bottom-nav-item {
        min-width: 50px;
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .bottom-nav-container {
        padding: 8px 0;
    }

    .bottom-nav-item {
        min-width: 45px;
        padding: 8px 6px;
    }

    .bottom-nav-item i {
        font-size: 1.3rem;
    }
} 