.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem 0.3rem 0.3rem;
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.btn-user:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #005596;
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-signout {
    padding: 0.4rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.btn-signout:hover {
    background: #f9fafb;
    color: #374151;
}
