/* Specific navbar fixes to ensure consistent styling and prevent color change issues */
.top-navbar {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: transform 0.3s ease !important;
}

/* Ensure the transform is the only animated property */
.top-navbar.nav-hidden {
    transform: translateY(-100%) !important;
}

.top-navbar.nav-visible {
    transform: translateY(0) !important;
}