/* Navbar Styles */
.navbar {
    background: #D8D8D8 !important;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
    border-radius: 0 0 15px 15px;
}

.navbar-brand {
    padding: 0 !important;
}

.navbar-brand img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
}

.navbar-toggler {
    border: 0 !important;
    padding: 0.25rem !important;
}

.nav-link {
    color: #2d5016 !important;
    font-weight: 500;
    border-radius: 20px;
    padding: 0.4rem 1rem !important;
}

.nav-link:hover {
    background: #45672f !important;
    color: #fff !important;
}

.navbar-nav .nav-item {
    margin: 0 2px;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Language Switcher */
.language-switcher {
    background: transparent;
    border: 1px solid #45672f;
    color: #45672f;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.language-switcher:hover {
    background: #45672f;
    color: white;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #45672f;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-nav {
        background: rgba(216, 216, 216, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }
}
