/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid var(--bs-border-color);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--bs-gray-600);
    font-size: 0.75rem;
    flex-grow: 1;
    height: 100%;
}

.bottom-nav-item.active {
    color: var(--brand-primary);
    font-weight: 600;
}

.bottom-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}
