.custom-navbar-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
    background: #ffffffd9 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid #e2e6ea !important;
}

.nav-brand-title {
    font-size: 1rem;
    color: #001229;
}

.nav-brand-subtitle {
    font-size: 0.75rem;
    color: #6c757d;
}


.nav-menu-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 8px;
    font-weight: 500;
    color: #001229;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-menu-item.active {
    background-color: #FBB801;
    color: #001229;
    font-weight: 600;
}

.nav-menu-item:hover:not(.active) {
    background-color: #f0f0f0;
    color: #000;
}

#yearDropdown {
    background-color: #FBB801; 
    border: none;
    font-weight: 600;
    color: #000;
    padding: 5px 15px;
    border-radius: 8px;
}

#yearDropdown:hover {
    background-color: #e0a300;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    position: fixed;
    z-index: 9;
    bottom: 0;
    width: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    padding: 10px;
    gap: 4px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-item.active {
    background-color: #ffeadd;
    color: #d67a42;
    font-weight: 600;
}

.nav-item i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .navbar-nav {
        display: none !important;
    }

    .bottom-nav {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .nav-brand-title {
        font-size: 14px;
        display: block;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}