.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #141414;
    padding: 0 2rem;
    height: 3.75rem;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.8rem; 
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.dropdown {
    position: relative;
    height: 3.75rem;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 3.75rem;
    left: 0;
    background: var(--color-black);
    min-width: 10rem; 
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    border: 0.06rem solid var(--color-gray);
    z-index: 10000;
}

.menu-right {
    right: 0;
    left: auto;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    display: block;
    text-decoration: none;
    font-size: 0.85rem;
}

.dropdown-menu li a:hover {
    background: var(--jaune-clair);
    color: var(--color-black);
}

#nav-avatar {
    width: 2rem; 
    height: 2rem;
    border-radius: 1rem;
    object-fit: cover;
}