/* Bottom Navigation Component Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 10px 0;
    z-index: 1000;
}

.nav-items {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: color 0.2s ease;
    padding: 5px 10px;
}

.nav-item.active {
    color: #007bff;
}

.nav-item:hover {
    color: #007bff;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    font-size: 18px;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
}
