/* Base Navbar Container */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

/* Brand Section */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 600;
    text-decoration: none;
}

.brand-icon {
    color: #4f46e5;
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1.25rem;
}

/* Navigation Links */
.navbar-nav {
    gap: 0.75rem;
    margin-left: auto;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: #6b7280;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-link:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

.nav-link.active {
    background: #4f46e5;
    color: white;
}

.nav-link i {
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
}

/* Mobile Toggle Button */
.navbar-toggler {
    padding: 0.5rem;
    border: none;
    background: transparent;
    color: #6b7280;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
    }
} 